Albumentations 1.4.18 Release Notes
- Support Our Work
- Transforms
- Core
- Deprecations
- Bugfixes
Support Our Work
- Love the library? You can contribute to its development by becoming a sponsor for the library. Your support is invaluable, and every contribution makes a difference.
- Haven't starred our repo yet? Show your support with a ⭐! It's just only one mouse click away.
- Got ideas or facing issues? We'd love to hear from you. Share your thoughts in our issues or join the conversation on our Discord server
Transforms
GridDistortion
Added support for keypoints
GridDropout
Added support for keypoints
and bounding boxes
GridElasticDeform
Added support for keypoints
and bounding boxes
MaskDropout
Added support for keypoints
and bounding boxes
Morphological
Added support for bounding boxes
and keypoints
OpticalDistortion
Added support for keypoints
PixelDropout
Added support for keypoints
and bonding boxes
XYMasking
Added support for bounding boxes
and keypoints
Core
Added support for masks as numpy arrays of the shape (num_masks, height, width)
Now you can apply transforms to masks as:
masks = <numpy array with shape (num_masks, height, width)>
transform(image=image, masks=masks)
Deprecations
Removed MixUp as it was doing almost exactly the same as TemplateTransform
Bugfixes
- Bugfix in RandomFog
- Bugfix in PlankianJitter
- Several people reported issue with masks as list of numpy arrays, I guess it was fixed as a part of some other work as I cannot reproduce it. Just in case added tests for that case.