Web application of plant-detection repository
Check licenses!
Clic here to see the demo of plant-detection-web in action for images and video (<5 min).
To downloand the image and run the contaider in detach mode, run the code below.
docker container run -p 8501:8501 --rm -d pablogod/plantdetection:latest
To shutdown the docker type this:
docker ps -aq # Check which id was assigned for the plant-detection-web instance
docker stop <weird id of plant-detection-web> # Type the id
Run this code locally on Linux based distros:
# Clone and install requirements
git clone https://github.com/DZDL/plant-detection-web
cd plant-detection-web
pip3 install -r requirements.txt
# Run streamlit
streamlit run app.py
# Then a webapp will open, check console output.
Only maintainers of the repository can do this.
heroku login
docker ps
heroku container:login
heroku container:push web -a vegetation-detector
heroku container:release web -a vegetation-detector