Skip to main content

Fast, flexible, and advanced augmentation library for deep learning, computer vision, and medical imaging. Albumentations offers a wide range of transformations for both 2D (images, masks, bboxes, keypoints) and 3D (volumes, volumetric masks, keypoints) data, with optimized performance and seamless integration into ML workflows. Licensed under AGPL-3.0 (open source); commercial licenses are also available.

Project description

AlbumentationsX

PyPI version CI PyPI Downloads

๐Ÿ“ฃ Stay updated! Subscribe to our newsletter for the latest releases, tutorials, and tips.

License: AGPL v3 Commercial License

Docs Discord Twitter LinkedIn Reddit

AlbumentationsX is a Python library for image augmentation. It provides high-performance, robust implementations and cutting-edge features for computer vision tasks. Image augmentation is used in deep learning and computer vision to increase the quality of trained models. The purpose of image augmentation is to create new training samples from the existing data.

GitAds Sponsored

Sponsored by GitAds

๐Ÿ“ข Important: AlbumentationsX Licensing

AlbumentationsX offers dual licensing:

  • AGPL-3.0 License: Free for open-source projects
  • Commercial License: For proprietary/commercial use (contact for pricing)

Quick Start

# Install AlbumentationsX with OpenCV
pip install albumentationsx[headless]

# Or if you already have OpenCV installed
pip install albumentationsx
import albumentations as A

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

For commercial licensing inquiries, please visit our pricing page.


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

Why AlbumentationsX

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

AlbumentationsX requires Python 3.10 or higher. To install the latest version from PyPI:

Basic Installation

If you already have OpenCV installed (any variant), simply install AlbumentationsX:

pip install -U albumentationsx

Installation with OpenCV

If you don't have OpenCV installed yet, choose the appropriate variant:

# For servers/Docker (no GUI support, lighter package)
pip install -U albumentationsx[headless]

# For local development with GUI support (cv2.imshow, etc.)
pip install opencv-python && pip install -U albumentationsx

# For OpenCV with extra algorithms (contrib modules)
pip install opencv-contrib-python && pip install -U albumentationsx

# For contrib + headless
pip install -U albumentationsx[contrib-headless]

Note: AlbumentationsX works with any OpenCV variant:

  • opencv-python (full version with GUI)
  • opencv-python-headless (no GUI, smaller size)
  • opencv-contrib-python (with extra modules)
  • opencv-contrib-python-headless (contrib + headless)

Choose the one that fits your needs. The library will detect whichever is installed.

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"]

AlbumentationsX collects anonymous usage statistics to improve the library. This can be disabled with ALBUMENTATIONS_OFFLINE=1 or ALBUMENTATIONS_NO_TELEMETRY=1.

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. For volumetric data (volumes and 3D masks), these transforms are applied independently to each slice along the Z-axis (depth dimension), maintaining consistency across the volume. 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. For volumetric data (volumes and 3D masks), these transforms are applied independently to each slice along the Z-axis (depth dimension), maintaining consistency across the volume. The following table shows which additional targets are supported by each transform:

  • Volume: 3D array of shape (D, H, W) or (D, H, W, C) where D is depth, H is height, W is width, and C is number of channels (optional)
  • Mask3D: Binary or multi-class 3D mask of shape (D, H, W) where each slice represents segmentation for the corresponding volume slice
Transform Image Mask BBoxes (HBB) BBoxes (OBB) Keypoints Volume Mask3D
Affine โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
AtLeastOneBBoxRandomCrop โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
BBoxSafeRandomCrop โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
CenterCrop โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
CoarseDropout โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
ConstrainedCoarseDropout โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
Crop โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
CropAndPad โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
CropNonEmptyMaskIfExists โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
D4 โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
ElasticTransform โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
Erasing โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
FrequencyMasking โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
GridDistortion โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
GridDropout โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
GridElasticDeform โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
GridMask โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
HorizontalFlip โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
Lambda โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
LongestMaxSize โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
MaskDropout โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
Morphological โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
Mosaic โœ“ โœ“ โœ“ โœ“ โœ“
NoOp โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
OpticalDistortion โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
OverlayElements โœ“ โœ“
Pad โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
PadIfNeeded โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
Perspective โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
PiecewiseAffine โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
PixelDropout โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
RandomCrop โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
RandomCropFromBorders โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
RandomCropNearBBox โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
RandomGridShuffle โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
RandomResizedCrop โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
RandomRotate90 โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
RandomScale โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
RandomSizedBBoxSafeCrop โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
RandomSizedCrop โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
Resize โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
Rotate โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
SafeRotate โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
ShiftScaleRotate โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
SmallestMaxSize โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
SquareSymmetry โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
ThinPlateSpline โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
TimeMasking โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
TimeReverse โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
Transpose โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
VerticalFlip โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
WaterRefraction โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
XYMasking โœ“ โœ“ โœ“ โœ“ โœ“ โœ“

3D transforms

3D transforms operate on volumetric data and can modify both the input volume and associated 3D mask.

Where:

  • Volume: 3D array of shape (D, H, W) or (D, H, W, C) where D is depth, H is height, W is width, and C is number of channels (optional)
  • Mask3D: Binary or multi-class 3D mask of shape (D, H, W) where each slice represents segmentation for the corresponding volume slice
Transform Volume Mask3D Keypoints
CenterCrop3D โœ“ โœ“ โœ“
CoarseDropout3D โœ“ โœ“ โœ“
CubicSymmetry โœ“ โœ“ โœ“
GridShuffle3D โœ“ โœ“ โœ“
Pad3D โœ“ โœ“ โœ“
PadIfNeeded3D โœ“ โœ“ โœ“
RandomCrop3D โœ“ โœ“ โœ“

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

Benchmark Results

Image Benchmark Results

System Information

  • Platform: macOS-15.1-arm64-arm-64bit
  • Processor: arm
  • CPU Count: 16
  • Python Version: 3.12.8

Benchmark Parameters

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

Library Versions

  • albumentationsx: 2.0.8
  • augly: 1.0.0
  • imgaug: 0.4.0
  • kornia: 0.8.0
  • torchvision: 0.20.1

Performance Comparison

Number shows how many uint8 images per second can be processed on one CPU thread. Larger is better. The Speedup column shows how many times faster AlbumentationsX is compared to the fastest other library for each transform.

Transform albumentationsx
2.0.8
augly
1.0.0
imgaug
0.4.0
kornia
0.8.0
torchvision
0.20.1
Speedup
(AlbX/fastest other)
Affine 1445 ยฑ 9 - 1328 ยฑ 16 248 ยฑ 6 188 ยฑ 2 1.09x
AutoContrast 1657 ยฑ 13 - - 541 ยฑ 8 344 ยฑ 1 3.06x
Blur 7657 ยฑ 114 386 ยฑ 4 5381 ยฑ 125 265 ยฑ 11 - 1.42x
Brightness 11985 ยฑ 455 2108 ยฑ 32 1076 ยฑ 32 1127 ยฑ 27 854 ยฑ 13 5.68x
CLAHE 647 ยฑ 4 - 555 ยฑ 14 165 ยฑ 3 - 1.17x
CenterCrop128 119293 ยฑ 2164 - - - - N/A
ChannelDropout 11534 ยฑ 306 - - 2283 ยฑ 24 - 5.05x
ChannelShuffle 6772 ยฑ 109 - 1252 ยฑ 26 1328 ยฑ 44 4417 ยฑ 234 1.53x
CoarseDropout 18962 ยฑ 1346 - 1190 ยฑ 22 - - 15.93x
ColorJitter 1020 ยฑ 91 418 ยฑ 5 - 104 ยฑ 4 87 ยฑ 1 2.44x
Contrast 12394 ยฑ 363 1379 ยฑ 25 717 ยฑ 5 1109 ยฑ 41 602 ยฑ 13 8.99x
CornerIllumination 484 ยฑ 7 - - 452 ยฑ 3 - 1.07x
Elastic 374 ยฑ 2 - 395 ยฑ 14 1 ยฑ 0 3 ยฑ 0 0.95x
Equalize 1236 ยฑ 21 - 814 ยฑ 11 306 ยฑ 1 795 ยฑ 3 1.52x
Erasing 27451 ยฑ 2794 - - 1210 ยฑ 27 3577 ยฑ 49 7.67x
GaussianBlur 2350 ยฑ 118 387 ยฑ 4 1460 ยฑ 23 254 ยฑ 5 127 ยฑ 4 1.61x
GaussianIllumination 720 ยฑ 7 - - 436 ยฑ 13 - 1.65x
GaussianNoise 315 ยฑ 4 - 263 ยฑ 9 125 ยฑ 1 - 1.20x
Grayscale 32284 ยฑ 1130 6088 ยฑ 107 3100 ยฑ 24 1201 ยฑ 52 2600 ยฑ 23 5.30x
HSV 1197 ยฑ 23 - - - - N/A
HorizontalFlip 14460 ยฑ 368 8808 ยฑ 1012 9599 ยฑ 495 1297 ยฑ 13 2486 ยฑ 107 1.51x
Hue 1944 ยฑ 64 - - 150 ยฑ 1 - 12.98x
Invert 27665 ยฑ 3803 - 3682 ยฑ 79 2881 ยฑ 43 4244 ยฑ 30 6.52x
JpegCompression 1321 ยฑ 33 1202 ยฑ 19 687 ยฑ 26 120 ยฑ 1 889 ยฑ 7 1.10x
LinearIllumination 479 ยฑ 5 - - 708 ยฑ 6 - 0.68x
MedianBlur 1229 ยฑ 9 - 1152 ยฑ 14 6 ยฑ 0 - 1.07x
MotionBlur 3521 ยฑ 25 - 928 ยฑ 37 159 ยฑ 1 - 3.79x
Normalize 1819 ยฑ 49 - - 1251 ยฑ 14 1018 ยฑ 7 1.45x
OpticalDistortion 661 ยฑ 7 - - 174 ยฑ 0 - 3.80x
Pad 48589 ยฑ 2059 - - - 4889 ยฑ 183 9.94x
Perspective 1206 ยฑ 3 - 908 ยฑ 8 154 ยฑ 3 147 ยฑ 5 1.33x
PlankianJitter 3221 ยฑ 63 - - 2150 ยฑ 52 - 1.50x
PlasmaBrightness 168 ยฑ 2 - - 85 ยฑ 1 - 1.98x
PlasmaContrast 145 ยฑ 3 - - 84 ยฑ 0 - 1.71x
PlasmaShadow 183 ยฑ 5 - - 216 ยฑ 5 - 0.85x
Posterize 12979 ยฑ 1121 - 3111 ยฑ 95 836 ยฑ 30 4247 ยฑ 26 3.06x
RGBShift 3391 ยฑ 104 - - 896 ยฑ 9 - 3.79x
Rain 2043 ยฑ 115 - - 1493 ยฑ 9 - 1.37x
RandomCrop128 111859 ยฑ 1374 45395 ยฑ 934 21408 ยฑ 622 2946 ยฑ 42 31450 ยฑ 249 2.46x
RandomGamma 12444 ยฑ 753 - 3504 ยฑ 72 230 ยฑ 3 - 3.55x
RandomResizedCrop 4347 ยฑ 37 - - 661 ยฑ 16 837 ยฑ 37 5.19x
Resize 3532 ยฑ 67 1083 ยฑ 21 2995 ยฑ 70 645 ยฑ 13 260 ยฑ 9 1.18x
Rotate 2912 ยฑ 68 1739 ยฑ 105 2574 ยฑ 10 256 ยฑ 2 258 ยฑ 4 1.13x
SaltAndPepper 629 ยฑ 6 - - 480 ยฑ 12 - 1.31x
Saturation 1596 ยฑ 24 - 495 ยฑ 3 155 ยฑ 2 - 3.22x
Sharpen 2346 ยฑ 10 - 1101 ยฑ 30 201 ยฑ 2 220 ยฑ 3 2.13x
Shear 1299 ยฑ 11 - 1244 ยฑ 14 261 ยฑ 1 - 1.04x
Snow 611 ยฑ 9 - - 143 ยฑ 1 - 4.28x
Solarize 11756 ยฑ 481 - 3843 ยฑ 80 263 ยฑ 6 1032 ยฑ 14 3.06x
ThinPlateSpline 82 ยฑ 1 - - 58 ยฑ 0 - 1.41x
VerticalFlip 32386 ยฑ 936 16830 ยฑ 1653 19935 ยฑ 1708 2872 ยฑ 37 4696 ยฑ 161 1.62x

๐Ÿค Contribute

We thrive on community collaboration! AlbumentationsX wouldn't be the powerful augmentation library it is without contributions from developers like you. Please see our Contributing Guide to get started. A huge Thank You ๐Ÿ™ to everyone who contributes!

AlbumentationsX open-source contributors

We look forward to your contributions to help make the AlbumentationsX ecosystem even better!

๐Ÿ“œ License

AlbumentationsX offers two licensing options to suit different needs:

  • AGPL-3.0 License: This OSI-approved open-source license is perfect for students, researchers, and enthusiasts. It encourages open collaboration and knowledge sharing. See the LICENSE file for full details.
  • AlbumentationsX Commercial License: Designed for commercial use, this license allows for the seamless integration of AlbumentationsX into commercial products and services, bypassing the open-source requirements of AGPL-3.0. If your use case involves commercial deployment, please visit our pricing page.

๐Ÿ“ž Contact

For bug reports and feature requests related to AlbumentationsX, please visit GitHub Issues. For questions, discussions, and community support, join our active communities on Discord, Twitter, LinkedIn, and Reddit. We're here to help with all things AlbumentationsX!

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}
}

๐Ÿ“ซ Stay Connected

Never miss updates, tutorials, and tips from the AlbumentationsX team! Subscribe to our newsletter.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

albumentationsx-2.1.0.tar.gz (462.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

albumentationsx-2.1.0-py3-none-any.whl (470.6 kB view details)

Uploaded Python 3

File details

Details for the file albumentationsx-2.1.0.tar.gz.

File metadata

  • Download URL: albumentationsx-2.1.0.tar.gz
  • Upload date:
  • Size: 462.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.20

File hashes

Hashes for albumentationsx-2.1.0.tar.gz
Algorithm Hash digest
SHA256 21ef4ed5d276c7d9ca16910ad6aa63103bb0e35476cc65e34b8677672ee833dc
MD5 4c7f71919dad067c990531ef23d252f1
BLAKE2b-256 0af6678f50343e1a8297d410b827d0f1281dfe25f8a23c87089818bdbc6a2656

See more details on using hashes here.

File details

Details for the file albumentationsx-2.1.0-py3-none-any.whl.

File metadata

  • Download URL: albumentationsx-2.1.0-py3-none-any.whl
  • Upload date:
  • Size: 470.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.20

File hashes

Hashes for albumentationsx-2.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 9cbec45ac997510fa2de2c3548d565b9b05343c90459648f63ea9ed372124beb
MD5 a342ab6d4d2ac79e8b68174a239fc2e4
BLAKE2b-256 cdf38090f96250320c69a84792163cd1a918e4316917ee5acc8382a535a30fda

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page