Vladimir Iglovikov
Vladimir Iglovikov
@gwtaylor If you, as an expert in the field of Computer Vision and data augmentations have any questions / proposals / feedback or just open for a short video chat,...
Added random filling for `CoarseDropout` in https://github.com/albumentations-team/albumentations/pull/1677 For other transforms - could be added. We added stricted checks for types, hence it is a bit trickier to add random color...
@adrianosantospb feel free to reopen when you will have a minium example that reposdices the issue
@rsomani95 You may apply transform to a target "images" which is a list of frame like: ```python tfms = A.Compose([ A.HorizontalFlip(p=0.5), A.ShiftScaleRotate(rotate_limit=15, p=0.3), A.ChannelDropout(p=0.1), A.RandomRain(p=0.1), A.GridDistortion(p=0.3) ], p=0.5) def aug_video(vid,...
Addressed in https://github.com/albumentations-team/albumentations/pull/1728
Addressed in https://github.com/albumentations-team/albumentations/pull/1906
Addressed in https://github.com/albumentations-team/albumentations/pull/1727
Thanks @MarognaLorenzo fo the PR!
@arsalanses ``` @app.get("/logout") def logout(response: Response): response.delete_cookie("session") return {"ok": True} ``` could work
``` Darwin Vladimirs-MacBook-Pro.local 23.2.0 Darwin Kernel Version 23.2.0: Wed Nov 15 21:53:18 PST 2023; root:xnu-10002.61.3~2/RELEASE_ARM64_T6000 arm64 ``` ``` kornia_rs==0.1.2 numpy==1.26.4 opencv-python-headless==4.9.0.80 pillow==10.2.0 ``` ``` python py-kornia/benchmark/bench_resize.py OpenCV: 0.04 ms PIL:...