Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Albumentations | 12,863 | 64 | 273 | 4 days ago | 53 | June 10, 2023 | 392 | mit | Python | |
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 | ||||||||||
Sketch Code | 4,714 | a year ago | 30 | Python | ||||||
Keras model to generate HTML code from hand-drawn website mockups. Implements an image captioning architecture to drawn source images. | ||||||||||
Pytorch Toolbelt | 1,441 | 1 | 6 | a month ago | 27 | June 27, 2022 | 1 | mit | Python | |
PyTorch extensions for fast R&D prototyping and Kaggle farming | ||||||||||
Caer | 691 | 2 | 6 months ago | 119 | October 13, 2021 | 2 | mit | Python | ||
High-performance Vision library in Python. Scale your research, not boilerplate. | ||||||||||
Augmentor.jl | 123 | a year ago | 24 | other | Julia | |||||
A fast image augmentation library in Julia for machine learning. | ||||||||||
Albumentations Demo | 96 | 7 months ago | 10 | mit | Python | |||||
The service for the demonstration of transforms in Albumentations library | ||||||||||
Kaggle Rsna | 61 | 3 years ago | mit | Python | ||||||
Deep Learning for Automatic Pneumonia Detection, RSNA challenge | ||||||||||
Classification | 35 | 2 years ago | 5 | apache-2.0 | Shell | |||||
Catalyst.Classification | ||||||||||
Segmentation | 27 | 2 years ago | 6 | apache-2.0 | Python | |||||
Catalyst.Segmentation | ||||||||||
Imgcrop | 25 | 5 years ago | mit | Python | ||||||
Simple image augmentation library focusing on random geometric cropping |
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:
Alexander Buslaev Computer Vision Engineer at Mapbox | Kaggle Master
Vladimir I. Iglovikov Staff Engineer at Lyft Level5 | Kaggle Grandmaster
Evegene Khvedchenya Computer Vision Research Engineer at Piata Farms | Kaggle Grandmaster
Mikhail Druzhinin | Kaggle Expert
Albumentations requires Python 3.7 or higher. To install the latest version from PyPI:
pip install -U albumentations
Other installation options are described in the documentation.
The full documentation is available at https://albumentations.ai/docs/.
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"]
Please start with the introduction articles about why image augmentation is important and how it helps to build better models.
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.
We have examples of using Albumentations along with PyTorch and TensorFlow.
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.
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 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.
To run the benchmark yourself, follow the instructions in benchmark/README.md
Results for running the benchmark on the first 2000 images from the ImageNet validation set using an Intel(R) Xeon(R) Gold 6140 CPU. All outputs are converted to a contiguous NumPy array with the np.uint8 data type. The table shows how many images per second can be processed on a single core; higher is better.
albumentations 1.1.0 |
imgaug 0.4.0 |
torchvision (Pillow-SIMD backend) 0.10.1 |
keras 2.6.0 |
augmentor 0.2.8 |
solt 0.1.9 |
|
---|---|---|---|---|---|---|
HorizontalFlip | 10220 | 2702 | 2517 | 876 | 2528 | 6798 |
VerticalFlip | 4438 | 2141 | 2151 | 4381 | 2155 | 3659 |
Rotate | 389 | 283 | 165 | 28 | 60 | 367 |
ShiftScaleRotate | 669 | 425 | 146 | 29 | - | - |
Brightness | 2765 | 1124 | 411 | 229 | 408 | 2335 |
Contrast | 2767 | 1137 | 349 | - | 346 | 2341 |
BrightnessContrast | 2746 | 629 | 190 | - | 189 | 1196 |
ShiftRGB | 2758 | 1093 | - | 360 | - | - |
ShiftHSV | 598 | 259 | 59 | - | - | 144 |
Gamma | 2849 | - | 388 | - | - | 933 |
Grayscale | 5219 | 393 | 723 | - | 1082 | 1309 |
RandomCrop64 | 163550 | 2562 | 50159 | - | 42842 | 22260 |
PadToSize512 | 3609 | - | 602 | - | - | 3097 |
Resize512 | 1049 | 611 | 1066 | - | 1041 | 1017 |
RandomSizedCrop_64_512 | 3224 | 858 | 1660 | - | 1598 | 2675 |
Posterize | 2789 | - | - | - | - | - |
Solarize | 2761 | - | - | - | - | - |
Equalize | 647 | 385 | - | - | 765 | - |
Multiply | 2659 | 1129 | - | - | - | - |
MultiplyElementwise | 111 | 200 | - | - | - | - |
ColorJitter | 351 | 78 | 57 | - | - | - |
Python and library versions: Python 3.9.5 (default, Jun 23 2021, 15:01:51) [GCC 8.3.0], numpy 1.19.5, pillow-simd 7.0.0.post3, opencv-python 4.5.3.56, scikit-image 0.18.3, scipy 1.7.1.
To create a pull request to the repository, follow the documentation at https://albumentations.ai/docs/contributing/
In some systems, in the multiple GPU regime, PyTorch may deadlock the DataLoader if OpenCV was compiled with OpenCL optimizations. Adding the following two lines before the library import may help. For more details https://github.com/pytorch/pytorch/issues/1355
cv2.setNumThreads(0)
cv2.ocl.setUseOpenCL(False)
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}
}