tomahim / py-image-dataset-generator

Get a large image dataset with minimal effort by grabbing image through the web and generate new ones by image augmentation.
MIT License
218 stars 41 forks source link

Implement Brightness shift #15

Open raghavgurbaxani opened 6 years ago

raghavgurbaxani commented 6 years ago

Thanks for the amazing work, is there a way to get images in varying lighting conditions within a specific brightness range ?

tomahim commented 6 years ago

For now, the full list of the image transformations is in the Readme and doesn't contain changing brightness but it's totally possible. In particular, this project is using scikit image so you can easily add your custom image transformations. I saw this in the documentation :

http://scikit-image.org/docs/0.9.x/api/skimage.exposure.html

Feel free to edit the code an make a pull request ! If you need help with this just tell me.