Skip to content

Albumentations 1.4.19 Release Notes

Latest
Compare
Choose a tag to compare
@ternaus ternaus released this 23 Oct 20:36
· 3 commits to main since this release
13a510d
  • Support Our Work
  • Transforms
  • Core
  • Bug Fixes

Support Our Work

  1. 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.
  2. Haven't starred our repo yet? Show your support with a ⭐! It's just only one mouse click away.
  3. 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

Added mask_interpolation to all transforms that use mask interpolation, including:

by @ternaus

Core

  • Minimal supported python version is 3.9
  • Removed dependency on scikit-image
  • Updated Random number generator from np.random.state to np.random.generator. Second is 50% faster => speedups in all transforms that heavily use random generator
  • Where possible moved from cv2.LUT to stringzilla lut
  • Added parameter mask_interpolation to Compose that overrides mask interpolation value in all transforms in that Compose, now can use more accurate cv2.INTER_NEAREST_EXACT for semantic segmentation and can work with depth and heatmap estimation using cubic, area, linear, etc

BugFixes