Albumentations
Fast and flexible image augmentation library. Paper about the library: https://www.mdpi.com/2078-2489/11/2/125
Install / Use
/learn @albumentations-team/AlbumentationsREADME
Albumentations
📣 Stay updated! Subscribe to our newsletter for the latest releases, tutorials, and tips directly from the Albumentations team.
Docs | Discord | Twitter | LinkedIn
⚠️ Important Notice: Albumentations is No Longer Maintained
This repository is no longer actively maintained. The last update was in June 2025, and no further bug fixes, features, or compatibility updates will be provided.
🚀 Introducing AlbumentationsX - The Future of Albumentations
All development has moved to AlbumentationsX, the next-generation successor to Albumentations.
Note: AlbumentationsX uses dual licensing (AGPL-3.0 / Commercial). The AGPL license has strict copyleft requirements - see details below.
Your Options Moving Forward
1. Continue Using Albumentations (MIT License)
- ✅ Forever free for all uses including commercial
- ✅ No licensing fees or restrictions
- ❌ No bug fixes - Even critical bugs won't be addressed
- ❌ No new features - Missing out on performance improvements
- ❌ No support - Issues and questions go unanswered
- ❌ No compatibility updates - May break with new Python/PyTorch versions
Best for: Projects that work fine with the current version and don't need updates
2. Upgrade to AlbumentationsX (Dual Licensed)
- ✅ Drop-in replacement - Same API, just
pip install albumentationsx - ✅ Active development - Regular updates and new features
- ✅ Bug fixes - Issues are actively addressed
- ✅ Performance improvements - Faster execution
- ✅ Community support - Active Discord and issue tracking
- ⚠️ Dual licensed:
- AGPL-3.0: Free ONLY for projects licensed under AGPL-3.0 (not compatible with MIT, Apache, BSD, etc.)
- Commercial License: Required for proprietary use AND permissive open-source projects
Best for: Projects that need ongoing support, updates, and new features
⚠️ AGPL License Warning: The AGPL-3.0 license is NOT compatible with permissive licenses like MIT, Apache 2.0, or BSD. If your project uses any of these licenses, you CANNOT use the AGPL version of AlbumentationsX - you'll need a commercial license.
Migration is Simple
# Uninstall original
pip uninstall albumentations
# Install AlbumentationsX
pip install albumentationsx
That's it! Your existing code continues to work without any changes:
import albumentations as A # Same import!
transform = A.Compose([
A.RandomCrop(width=256, height=256),
A.HorizontalFlip(p=0.5),
A.RandomBrightnessContrast(p=0.2),
])
Learn More
- 📦 AlbumentationsX Repository: https://github.com/albumentations-team/AlbumentationsX
- 💰 Commercial Licensing: https://albumentations.ai/pricing
- 💬 Discord Community: https://discord.gg/AKPrrDYNAt
Original Albumentations README
GitAds Sponsored
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:

Why Albumentations
- Complete Computer Vision Support: Works with all major CV tasks including classification, segmentation (semantic & instance), object detection, and pose estimation.
- Simple, Unified API: One consistent interface for all data types - RGB/grayscale/multispectral images, masks, bounding boxes, and keypoints.
- Rich Augmentation Library: 70+ high-quality augmentations to enhance your training data.
- Fast: Consistently benchmarked as the fastest augmentation library, with optimizations for production use.
- Deep Learning Integration: Works with PyTorch, TensorFlow, and other frameworks. Part of the PyTorch ecosystem.
- Created by Experts: Built by developers with deep experience in computer vision and machine learning competitions.
Table of contents
- Albumentations
Authors
Current Maintainer
Vladimir I. Iglovikov | Kaggle Grandmaster
Emeritus Core Team Members
Mikhail Druzhinin | Kaggle Expert
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 explore augmentations and see Albumentations in action
Check the [online demo of the library](https://explore
Related Skills
openai-image-gen
326.5kBatch-generate images via OpenAI Images API. Random prompt sampler + `index.html` gallery.
claude-opus-4-5-migration
80.4kMigrate prompts and code from Claude Sonnet 4.0, Sonnet 4.5, or Opus 4.1 to Opus 4.5
model-usage
326.5kUse CodexBar CLI local cost usage to summarize per-model usage for Codex or Claude, including the current (most recent) model or a full model breakdown. Trigger when asked for model-level usage/cost data from codexbar, or when you need a scriptable per-model summary from codexbar cost JSON.
mcp-for-beginners
15.5kThis open-source curriculum introduces the fundamentals of Model Context Protocol (MCP) through real-world, cross-language examples in .NET, Java, TypeScript, JavaScript, Rust and Python. Designed for developers, it focuses on practical techniques for building modular, scalable, and secure AI workflows from session setup to service orchestration.
