title | emoji | colorFrom | colorTo | sdk | sdk_version | python_version | app_file | pinned | license | short_description | tags | ||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Albumentations Demo |
🏢 |
blue |
pink |
streamlit |
1.22.0 |
3.8 |
src/app.py |
true |
mit |
Optimize image augmentations with Albumentations |
|
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
This service is created to demonstrate abilities of the Albumentations - a library for efficient image augmentations.
Link to my article about augmentations selection and why this service can be useful
Project repository: github.com/IliaLarchenko/albumentations-demo
Online demo: huggingface.co/spaces/IliaLarchenko/albumentations-demo
If you would like to run the service locally follow the installation instruction.
git clone https://github.com/IliaLarchenko/albumentations-demo
cd albumentations-demo
pip install -r requirements.txt
streamlit run src/app.py
If you want to work with you own images just replace the last line with:
streamlit run src/app.py -- --image_folder PATH_TO_YOUR_IMAGE_FOLDER
If your images have some unusual proportions you can use image_width
parameter to set the width in pixels of the original image to show. The width of the transformed image and heights of both images will be computed automatically. Default value of width is 400
.
streamlit run src/app.py -- --image_width INT_VALUE_OF_WIDTH
In your terminal you will see the link to the running local service similar to :
You can now view your Streamlit app in your browser.
Network URL: http://YOUR_LOCAL_IP:8501
External URL: http://YOUR_GLOBAL_IP:8501
Just follow the local link to use the service.
You can run the service in docker:
docker-compose up
It will be available at http://DOCKER_HOST_IP:8501
The interface is very simple and intuitive:
- On the left you have a control sidebar. Select the "Simple" mode. You can choose the image and the transformation.
- After that you will see the control elements for the every parameter this transformation has.
- Every time you change any parameter you will see the augmented version of the image on the right side of your screen.
- Below the images you can find a code for calling of the augmentation with selected parameters.
- You can also find there the original docstring for this transformation.
In the professional mode you can:
- Upload your own image
- Combine multiple transformations
- See the random parameters used to get the result
Be aware that in Professional mode some combination of parameters of different transformations can be invalid. You should control it.
- Albumentations library: github.com/albumentations-team/albumentations
- Image Source: pexels.com/royalty-free-images
- Streamlit - framework powering this app github.com/streamlit/streamlit