albumentations

Fast image augmentation library and an easy-to-use wrapper around other libraries. Documentation: https://albumentations.ai/docs/ Paper about the library: https://www.mdpi.com/2078-2489/11/2/125

9872
1270
Python

Albumentations

PyPI version
CI
PyPI Downloads
Conda Downloads
Stack Overflow
License: MIT

Docs | Discord | Twitter | LinkedIn

Albumentations is a Python library for image augmentation. Image augmentation is used in deep learning and computer vision tasks to increase the quality of trained models. The purpose of image augmentation is to create new training samples from the existing data.

Here is an example of how you can apply some pixel-level augmentations from Albumentations to create new images from the original one:
parrot

Why Albumentations

Community-Driven Project, Supported By

Albumentations thrives on developer contributions. We appreciate our sponsors who help sustain the project’s infrastructure.

πŸ† Gold Sponsors
Your company could be here
πŸ₯ˆ Silver Sponsors
Datature
πŸ₯‰ Bronze Sponsors
Roboflow

πŸ’ Become a Sponsor

Your sponsorship is a way to say β€œthank you” to the maintainers and contributors who spend their free time building and maintaining Albumentations. Sponsors are featured on our website and README. View sponsorship tiers on GitHub Sponsors

Table of contents

Authors

Current Maintainer

Vladimir I. Iglovikov | Kaggle Grandmaster

Emeritus Core Team Members

Mikhail Druzhinin | Kaggle Expert

Alex Parinov | Kaggle Master

Alexander Buslaev | Kaggle Master

Eugene Khvedchenya | Kaggle Grandmaster

Installation

Albumentations requires Python 3.9 or higher. To install the latest version from PyPI:

pip install -U albumentations

Other installation options are described in the documentation.

Documentation

The full documentation is available at https://albumentations.ai/docs/.

A simple example

import albumentations as A
import cv2

# Declare an augmentation pipeline
transform = A.Compose([
    A.RandomCrop(width=256, height=256),
    A.HorizontalFlip(p=0.5),
    A.RandomBrightnessContrast(p=0.2),
])

# Read an image with OpenCV and convert it to the RGB colorspace
image = cv2.imread("image.jpg")
image = cv2.cvtColor(image, cv2.COLOR_BGR2RGB)

# Augment an image
transformed = transform(image=image)
transformed_image = transformed["image"]

Getting started

I am new to image augmentation

Please start with the introduction articles about why image augmentation is important and how it helps to build better models.

I want to use Albumentations for the specific task such as classification or segmentation

If you want to use Albumentations for a specific task such as classification, segmentation, or object detection, refer to the set of articles that has an in-depth description of this task. We also have a list of examples on applying Albumentations for different use cases.

I want to know how to use Albumentations with deep learning frameworks

We have examples of using Albumentations along with PyTorch and TensorFlow.

I want to explore augmentations and see Albumentations in action

Check the online demo of the library. With it, you can apply augmentations to different images and see the result. Also, we have a list of all available augmentations and their targets.

Who is using Albumentations














See also

List of augmentations

Pixel-level transforms

Pixel-level transforms will change just an input image and will leave any additional targets such as masks, bounding boxes, and keypoints unchanged. The list of pixel-level transforms:

Spatial-level transforms

Spatial-level transforms will simultaneously change both an input image as well as additional targets such as masks, bounding boxes, and keypoints. The following table shows which additional targets are supported by each transform.

Transform Image Mask BBoxes Keypoints
Affine βœ“ βœ“ βœ“ βœ“
BBoxSafeRandomCrop βœ“ βœ“ βœ“ βœ“
CenterCrop βœ“ βœ“ βœ“ βœ“
CoarseDropout βœ“ βœ“ βœ“ βœ“
Crop βœ“ βœ“ βœ“ βœ“
CropAndPad βœ“ βœ“ βœ“ βœ“
CropNonEmptyMaskIfExists βœ“ βœ“ βœ“ βœ“
D4 βœ“ βœ“ βœ“ βœ“
ElasticTransform βœ“ βœ“ βœ“ βœ“
Erasing βœ“ βœ“ βœ“ βœ“
FrequencyMasking βœ“ βœ“ βœ“ βœ“
GridDistortion βœ“ βœ“ βœ“ βœ“
GridDropout βœ“ βœ“ βœ“ βœ“
GridElasticDeform βœ“ βœ“ βœ“ βœ“
HorizontalFlip βœ“ βœ“ βœ“ βœ“
Lambda βœ“ βœ“ βœ“ βœ“
LongestMaxSize βœ“ βœ“ βœ“ βœ“
MaskDropout βœ“ βœ“ βœ“ βœ“
Morphological βœ“ βœ“ βœ“ βœ“
NoOp βœ“ βœ“ βœ“ βœ“
OpticalDistortion βœ“ βœ“ βœ“ βœ“
OverlayElements βœ“ βœ“
Pad βœ“ βœ“ βœ“ βœ“
PadIfNeeded βœ“ βœ“ βœ“ βœ“
Perspective βœ“ βœ“ βœ“ βœ“
PiecewiseAffine βœ“ βœ“ βœ“ βœ“
PixelDropout βœ“ βœ“ βœ“ βœ“
RandomCrop βœ“ βœ“ βœ“ βœ“
RandomCropFromBorders βœ“ βœ“ βœ“ βœ“
RandomGridShuffle βœ“ βœ“ βœ“ βœ“
RandomResizedCrop βœ“ βœ“ βœ“ βœ“
RandomRotate90 βœ“ βœ“ βœ“ βœ“
RandomScale βœ“ βœ“ βœ“ βœ“
RandomSizedBBoxSafeCrop βœ“ βœ“ βœ“ βœ“
RandomSizedCrop βœ“ βœ“ βœ“ βœ“
Resize βœ“ βœ“ βœ“ βœ“
Rotate βœ“ βœ“ βœ“ βœ“
RotateAndProject βœ“ βœ“ βœ“ βœ“
SafeRotate βœ“ βœ“ βœ“ βœ“
ShiftScaleRotate βœ“ βœ“ βœ“ βœ“
SmallestMaxSize βœ“ βœ“ βœ“ βœ“
ThinPlateSpline βœ“ βœ“ βœ“ βœ“
TimeMasking βœ“ βœ“ βœ“ βœ“
TimeReverse βœ“ βœ“ βœ“ βœ“
Transpose βœ“ βœ“ βœ“ βœ“
VerticalFlip βœ“ βœ“ βœ“ βœ“
XYMasking βœ“ βœ“ βœ“ βœ“

A few more examples of augmentations

Semantic segmentation on the Inria dataset

inria

Medical imaging

medical

Object detection and semantic segmentation on the Mapillary Vistas dataset

vistas

Keypoints augmentation

Benchmarking results

System Information

  • Platform: macOS-15.0.1-arm64-arm-64bit
  • Processor: arm
  • CPU Count: 10
  • Python Version: 3.12.7

Benchmark Parameters

  • Number of images: 1000
  • Runs per transform: 10
  • Max warmup iterations: 1000

Library Versions

  • albumentations: 1.4.20
  • augly: 1.0.0
  • imgaug: 0.4.0
  • kornia: 0.7.3
  • torchvision: 0.20.0

Performance Comparison

Number - is the number of uint8 RGB images processed per second on a single CPU core. Higher is better.

Transform albumentations
1.4.20
augly
1.0.0
imgaug
0.4.0
kornia
0.7.3
torchvision
0.20.0
HorizontalFlip 8618 Β± 1233 4807 Β± 818 6042 Β± 788 390 Β± 106 914 Β± 67
VerticalFlip 22847 Β± 2031 9153 Β± 1291 10931 Β± 1844 1212 Β± 402 3198 Β± 200
Rotate 1146 Β± 79 1119 Β± 41 1136 Β± 218 143 Β± 11 181 Β± 11
Affine 682 Β± 192 - 774 Β± 97 147 Β± 9 130 Β± 12
Equalize 892 Β± 61 - 581 Β± 54 152 Β± 19 479 Β± 12
RandomCrop80 47341 Β± 20523 25272 Β± 1822 11503 Β± 441 1510 Β± 230 32109 Β± 1241
ShiftRGB 2349 Β± 76 - 1582 Β± 65 - -
Resize 2316 Β± 166 611 Β± 78 1806 Β± 63 232 Β± 24 195 Β± 4
RandomGamma 8675 Β± 274 - 2318 Β± 269 108 Β± 13 -
Grayscale 3056 Β± 47 2720 Β± 932 1681 Β± 156 289 Β± 75 1838 Β± 130
RandomPerspective 412 Β± 38 - 554 Β± 22 86 Β± 11 96 Β± 5
GaussianBlur 1728 Β± 89 242 Β± 4 1090 Β± 65 176 Β± 18 79 Β± 3
MedianBlur 868 Β± 60 - 813 Β± 30 5 Β± 0 -
MotionBlur 4047 Β± 67 - 612 Β± 18 73 Β± 2 -
Posterize 9094 Β± 301 - 2097 Β± 68 430 Β± 49 3196 Β± 185
JpegCompression 918 Β± 23 778 Β± 5 459 Β± 35 71 Β± 3 625 Β± 17
GaussianNoise 166 Β± 12 67 Β± 2 206 Β± 11 75 Β± 1 -
Elastic 201 Β± 5 - 235 Β± 20 1 Β± 0 2 Β± 0
Clahe 454 Β± 22 - 335 Β± 43 94 Β± 9 -
CoarseDropout 13368 Β± 744 - 671 Β± 38 536 Β± 87 -
Blur 5267 Β± 543 246 Β± 3 3807 Β± 325 - -
ColorJitter 628 Β± 55 255 Β± 13 - 55 Β± 18 46 Β± 2
Brightness 8956 Β± 300 1163 Β± 86 - 472 Β± 101 429 Β± 20
Contrast 8879 Β± 1426 736 Β± 79 - 425 Β± 52 335 Β± 35
RandomResizedCrop 2828 Β± 186 - - 287 Β± 58 511 Β± 10
Normalize 1196 Β± 56 - - 626 Β± 40 519 Β± 12
PlankianJitter 2204 Β± 385 - - 813 Β± 211 -

Contributing

To create a pull request to the repository, follow the documentation at CONTRIBUTING.md

https://github.com/albuemntations-team/albumentation/graphs/contributors

Community

Citing

If you find this library useful for your research, please consider citing Albumentations: Fast and Flexible Image Augmentations:

@Article{info11020125,
    AUTHOR = {Buslaev, Alexander and Iglovikov, Vladimir I. and Khvedchenya, Eugene and Parinov, Alex and Druzhinin, Mikhail and Kalinin, Alexandr A.},
    TITLE = {Albumentations: Fast and Flexible Image Augmentations},
    JOURNAL = {Information},
    VOLUME = {11},
    YEAR = {2020},
    NUMBER = {2},
    ARTICLE-NUMBER = {125},
    URL = {https://www.mdpi.com/2078-2489/11/2/125},
    ISSN = {2078-2489},
    DOI = {10.3390/info11020125}
}