This is an Image Augmentation library designed to suppot ImageDataGenerator()
from keras.preprocessing
library.
Presently this library contains following methods,
- contrast_stretch
- histogram_equalization
- CLAHE
from image_augmentation_keras import Image_Augmentation
CLAHE = Image_Augmentation(method="CLAHE")
datagen = ImageDataGenerator(
preprocessing_function=CLAHE())