Skip to content

Releases: albumentations-team/albumentations

0.4.0

14 Oct 17:02
Compare
Choose a tag to compare

Table of Contents

New transforms

ISONoise

2e25667
Target: image

This transform mimics the noise that images will have if the ISO parameter of the camera is high. Wiki

Solarize

e365b52
Targets: image

Solarize inverts all pixels above some threshold. It is an essential part of the work AutoAugment: Learning Augmentation Policies from Data.

Equilize

9f71038
Target: image

Equalizes image histogram. It is an essential part of the work AutoAugment: Learning Augmentation Policies from Data.

Posterize

ad95fa0
Target: image

Reduce the number of bits for each pixel. It is an essential part of the work AutoAugment: Learning Augmentation Policies from Data.

ImageCompression

Target: image
b612786
Decrease Jpeg or WebP compression to the image.

Downscale

df831d6
Target: image

Decreases image quality by downscaling and upscaling back.

RandomResizedCrop

4dbe41e
Targets: image, mask, bboxes, keypoints

Crop the given Image to the random size and aspect ratio. This transform is an essential part of many image classification pipelines. Very popular for ImageNet classification.

It has the same API as RandomResizedCrop in torchvision.

RandomGridShuffle

4cf6c36
Targets: image, mask

Partition an image into tiles. Shuffle them and merge back.

CropNonEmptyMaskIfExists

Targets: image, mask, bboxes, keypoints

Crop area with a mask if the mask is non-empty, else make a random crop.

ToTensorV2

a502680
Targets: image, mask

Convert image and mask to torch.Tensor

New features

Added YOLO format to bounding boxes.

d05db9e

The Yolo format of a bounding box has a format [x, y, width, height], where values normalized to the size of the image. Ex: [0.3, 0.1, 0.05, 0.07]

Added Deterministic / Replay mode

9942689

Augmentations pipeline has a lot of randomnesses, which is hard to debug. We added Determentsic / Replay mode in which you can track what parameters were applied to the input and use precisely the same transform to another input if necessary.

Jupyter notebook with an example.

Added fill_value to the Cutout transform.

d85bab5

Separated fill_value for images and masks

2c1a148

One of the use cases is it to use mask_value, which is equal to the ignore_index of your loss. This will decrease the level of noise and may improve convergence.

Speedup in the RGBShift

c3cc277

3.2 times faster for uint8 images.

Speedup in HueSaturationValue

448761d

2 times faster for uint8 images.

Speedup in [RandomBrightnessContrast](https://albumentations.readthedocs.io/en/latest/api/augmentations.html#albumentations.augmentations.transforms.RandomBrightnessCont...

Read more

0.3.0 Release

26 Jun 19:35
eec2097
Compare
Choose a tag to compare

Added serialization / deserialization

  • Now we can define transformations in a python dictionary, json, yaml files and they will be deserialized and used in the code.
  • Now we can define transformations in the code and serialize them in python dictionary, json and yaml files.

Jupyter notebook with an example

Special thanks to @creafz

Added new transformations

Special thanks to @vfdev-5 @ternaus @BloodAxe @kirillbobyrev

Bugfixes and improvements

Special thanks to @qubvel @ternaus @albu @BloodAxe

0.2.0 Release

04 Mar 19:31
Compare
Choose a tag to compare

Added support for the keypoint transformations to

Notebook with an example

Special thanks to the Evegene Khvedchenya (@BloodAxe) for the work.

Added an option to apply the same transformation to the more than one target of the same type.

The possible use case are image2image or stereo-image pipelines.

Notebook with an example

Special thanks to Alexander Buslaev (@albu) for the work.

Added new transformations

Speed up in

Bug fixes

And many others.

Additional

  • Performance benchmark was extended to the Augmentor and Solt libraries.
  • Added table to Readme that shows all implemented transformations with the set of possible targets: images, bounding boxes, masks, key points. (Special thanks to Alex Parinov @creafz )
  • The library can be installed in anaconda.

Contributors

@BloodAxe @albu @creafz @ternaus @erikgaas @marcocaccin @libfun @DBusAI @alexobednikov @StrikerRUS @IlyaOvodov @ZFTurbo @Vcv85 @georgymironov @LinaShiryaeva @vfdev-5 @daisukelab @cdicle

Extended bounding boxes support. New transformations. New notebooks with examples. A lot of bugfixes.

26 Sep 12:06
c16c15d
Compare
Choose a tag to compare

Bounding boxes support

Transformations that support bounding boxes

The main change in this release is the addition of the operations on bounding boxes to the

Supported formats

Currently supported the following formats for the bounding boxes:

  1. COCO: [x_min, y_min, width, height], ex [97, 12, 150, 200]
  2. Pascal VOC: [x_min, y_min, x_max, y_max], ex [97, 12, 247, 212]

Bounding box filtering

It may happen that after the transformation a big part of the bounding box was cropped and it is needed to exclude such boxes.

We support such a bounding box filtering based on the:

  • Bounding box area, measured in pixels.
  • Visible box area, measured in percent.

Smaller changes

  • Added support for 8-bit images.
  • We changed all np.random occurrences to random due to the numpy behavior reported in pytorch/pytorch#5059
  • Multiple bugfixes.

Added notebooks with examples