prateekralhan / Streamlit-based-Low-Light-Image-Enhancer

A simple streamlit based webapp to process and enhance low-light images using Keras MIRNet.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

✨ Low Light Image Enhancer 🖼 Project Status: Active

A simple streamlit based webapp to process and enhance low-light images using Keras MIRNet.

1 2

Installation:

  • Simply run the command pip install -r requirements.txt to install the dependencies.

Usage:

  1. Clone this repository and install the dependencies as mentioned above.
  2. Simply run the command:
streamlit run app.py
  1. Navigate to http://localhost:8501 in your web-browser.
  2. By default, streamlit allows us to upload files of max. 200MB. If you want to have more size for uploading audio files, execute the command :
streamlit run app.py --server.maxUploadSize=1028

1 1 1 1 2 2

Results:

Original Low-Light Image Enhanced Image
pic1 pic1
pic2 pic2
pic3 pic3
pic4 pic4
pic4 pic4

Running the Dockerized App

  1. Ensure you have Docker Installed and Setup in your OS (Windows/Mac/Linux). For detailed Instructions, please refer this.
  2. Navigate to the folder where you have cloned this repository ( where the Dockerfile is present ).
  3. Build the Docker Image (don't forget the dot!! 😄 ):
docker build -f Dockerfile -t app:latest .
  1. Run the docker:
docker run -p 8501:8501 app:latest

This will launch the dockerized app. Navigate to http://localhost:8501/ in your browser to have a look at your application. You can check the status of your all available running dockers by:

docker ps

About

A simple streamlit based webapp to process and enhance low-light images using Keras MIRNet.

License:MIT License


Languages

Language:Python 89.8%Language:Dockerfile 6.0%Language:Shell 3.5%Language:Procfile 0.7%