Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/chekoduadarsh/custom-image-augmentation-keras

This is a plugin tool for your project to impliment your coustom image processing algorithms
https://github.com/chekoduadarsh/custom-image-augmentation-keras

image-augmentation image-processing imagedatagenerator keras starter-code

Last synced: 19 days ago
JSON representation

This is a plugin tool for your project to impliment your coustom image processing algorithms

Awesome Lists containing this project

README

        

# Image Augmentation Keras
This is an Image Augmentation library designed to suppot `ImageDataGenerator()` from `keras.preprocessing` library.

### Welcoming contribution to this repo!!! you can include any image processing techiques to this code

Presently this library contains following methods,
1. contrast_stretch
2. histogram_equalization
3. CLAHE

## Implimentation
```python3
from image_augmentation_keras import Image_Augmentation

CLAHE = Image_Augmentation(method="CLAHE")

datagen = ImageDataGenerator(
preprocessing_function=CLAHE())

```