Skip to main content

AlbumentationsX

PyPI version CI PyPI Downloads

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

License: AGPL-3.0-only 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.

Citing

If AlbumentationsX supports your research, please cite AlbumentationsX: One Augmentation Pipeline for Images and Related Annotations. Your citation makes the project's research impact visible to funders and helps sustain maintenance.

@article{iglovikov2026albumentationsx,
    title = {AlbumentationsX: One Augmentation Pipeline for Images and Related Annotations},
    author = {Iglovikov, Vladimir},
    journal = {arXiv preprint arXiv:2608.11123},
    year = {2026},
    doi = {10.48550/arXiv.2608.11123},
    url = {https://arxiv.org/abs/2608.11123}
}

๐Ÿ“ข Licensing: commercial use is allowed

AlbumentationsX can be used in commercial projects under the AGPL. The current public repository is available under AGPL-3.0-only, an open-source license. The AGPL permits commercial use subject to its terms.

Albumentations, LLC also offers separately negotiated commercial licenses with alternative, scope-specific permissions for the versions and uses covered by an executed agreement. A commercial license is an option when a team needs terms different from the AGPL. It is not automatically required because a project is commercial, proprietary, in production, or internal.

Which terms fit depends on the deployment facts, including modification, combination, copying or conveyance, and network interaction. Support, warranties, maintenance, and service levels are included only when an executed agreement or order form expressly says so. See the AGPL text, licensing details and history, and third-party notices.

Quick Start

# Install the PyTorch build for your platform first. For Linux CPU-only:
pip install "torch>=2.13.0" --index-url https://download.pytorch.org/whl/cpu

# Then install AlbumentationsX with OpenCV.
pip install "albumentationsx[headless]"
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

Install the PyTorch build for your CPU, CUDA, or MPS environment before installing AlbumentationsX. For a Linux CPU-only environment:

pip install "torch>=2.13.0" --index-url https://download.pytorch.org/whl/cpu

For CUDA or macOS (MPS), use the matching command from the PyTorch installation selector. AlbumentationsX does not choose or install a PyTorch accelerator build.

If you already have OpenCV installed (any variant), 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.

pip install albumentationsx installs the base dependency set without PyTorch. It is useful for dependency-only consumers such as documentation builds. Importing albumentations requires the PyTorch build you selected above.

Other installation options are described in the documentation.

Documentation

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

For AI-assisted augmentation review, AlbumentationsX can also be used through MCP-capable hosts such as Claude Desktop, Cursor, Claude Code, and Codex. The community AlbumentationsX MCP integration lets assistants inspect transforms, validate pipelines, render bounded local preview batches, compare preview runs, collect concrete feedback, and export reproducible AlbumentationsX pipelines.

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 (a volume 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 (a volume 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 โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
CopyAndPaste โœ“ โœ“ โœ“ โœ“
Crop โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
CropAndPad โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
CropNonEmptyMaskIfExists โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
D4 โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
ElasticTransform โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
Erasing โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
FrequencyMasking โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
GridDistortion โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
GridDropout โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
GridElasticDeform โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
GridMask โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
HorizontalFlip โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
Lambda โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
LetterBox โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
LongestMaxSize โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
MaskDropout โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
Morphological โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
Mosaic โœ“ โœ“ โœ“ โœ“ โœ“
NoOp โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
OpticalDistortion โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
OverlayElements โœ“ โœ“
Pad โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
PadIfNeeded โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
Perspective โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
PiecewiseAffine โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
PixelDropout โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
PixelSpread โœ“ โœ“ โœ“ โœ“ โœ“ โœ“ โœ“
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. Spatial transforms can also modify associated 3D masks and keypoints, while volume-intensity transforms leave those targets unchanged.

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
Affine3D โœ“ โœ“ โœ“
Anisotropy3D โœ“
CenterCrop3D โœ“ โœ“ โœ“
CoarseDropout3D โœ“ โœ“ โœ“
CubicSymmetry โœ“ โœ“ โœ“
Flip3D โœ“ โœ“ โœ“
GridShuffle3D โœ“ โœ“ โœ“
Pad3D โœ“ โœ“ โœ“
PadIfNeeded3D โœ“ โœ“ โœ“
RandomCrop3D โœ“ โœ“ โœ“
RandomRotate90_3D โœ“ โœ“ โœ“
Resize3D โœ“ โœ“ โœ“

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

The current public repository is licensed under AGPL-3.0-only. Earlier AlbumentationsX releases retain the license terms recorded in the licensing details and history. The AGPL permits commercial use subject to its terms.

For alternative, scope-specific terms from Albumentations, LLC, visit the pricing page. The AGPL text, licensing details, and third-party notices contain the complete repository-level details.

๐Ÿ“ž 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!


๐Ÿ“ซ Stay Connected

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

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.4.2.tar.gz (833.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.4.2-py3-none-any.whl (613.2 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: albumentationsx-2.4.2.tar.gz
  • Upload date:
  • Size: 833.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for albumentationsx-2.4.2.tar.gz
Algorithm Hash digest
SHA256 f960290418fcdd4a11bbcb1b02e4c8763e6709dc50914d1497a58472795c3bf4
MD5 4dc2449242a7190fd9023b5839f789fa
BLAKE2b-256 d1bc24784e442c6f69523f04010fcaa471dc36247878bbf1a5ee568903311af2

See more details on using hashes here.

Provenance

The following attestation bundles were made for albumentationsx-2.4.2.tar.gz:

Publisher: upload_to_pypi.yml on albumentations-team/AlbumentationsX

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: albumentationsx-2.4.2-py3-none-any.whl
  • Upload date:
  • Size: 613.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for albumentationsx-2.4.2-py3-none-any.whl
Algorithm Hash digest
SHA256 618b6526e50f83f4517fc9ed596553b6ff5c7f91da882e07ccd70b9629d17145
MD5 045f3ed1b1b0428312b74383b332935e
BLAKE2b-256 1d2686fcba5ff051f6766557749c2403dea353ccbd656f18af85eaaa190d1dd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for albumentationsx-2.4.2-py3-none-any.whl:

Publisher: upload_to_pypi.yml on albumentations-team/AlbumentationsX

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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