Hi..
The purpose of this project is to be able detect and estimate the size of ponds from a longitude and latitude data.This is also part of take home test for applying Machine Learning Computer Vision Engineer in eFishery.
Gibran is a member of eFishery Point who was assigned to map 5 shrimp ponds in 5 different places in Indonesia in one day.
However, the distance between these 5 pools is far enough to be reached even if you use a land vehicle. So it is not possible to conduct surveys directly to the field.
Gibran need a program that can detect and estimate size of the shirimp ponds by just giving the location coordiantes, by giving latitude and longitude data.
To make Gibran live easier, we create a web based platform to be able detect shrimp ponds and estimate its size. Deep learning approach were made to solved this problem, by using YOLOv8 (You Only Look Once version 8) to segmented the shirmp ponds
How it work
- Prepare the dataset, annotate the image, and export it into YOLOv8 format (I used Roboflow to do this).
- Train the pretrained models of YOLOv8 with our dataset (link train.ipynb).
- Use ClearML to tracks and controls the process, performance metrics, and model storing.
- Create the platform using streamlit and inference the image using the our trained model.
- Make a calculation based on pixel and the actual map zoom level ratio.
Here is the instruction about how to install and run the program.
- Clone this git repo, you can download or use commmand below
git clone https://github.com/aditya39/eFishery_Task2_PondsDetection.git
- Install depedency (Recommend to create Virtual Environtment first before doing this step) Enter the project directory then run this command in CLI like CMD:
pip install -r requirements.txt
- To run the program, run this command below on CLI
streamlit run app.py
- Browser will automatically open, if not, type localhost:8501 to broweser address. Web application page will be open.
- Clone this git repository by run command below.
git clone https://github.com/aditya39/eFishery_Task2_PondsDetection.git
- To run the app, open CLI on the directory of the program and run this command.
docker-compose up
- Wait to load and install depedency, after done you can go to browser and run localhost:8501, app should be running.
- To stop the docker, run this command.
docker-compose down