This project offers a web server and a model that transforms a measurement based on the pH color scale to a reliable value of pH using Machine Learning. The work done here is based on ygarg704/ph-value-recognition-based-on-rgb-color with some improvements on the model building and the web UI/UX.
- Python 3.8 or later
- Venv or conda
First you need to setup your python virtual environment. If you are using venv use the command as follows:
# Create virtual environment
python -m venv color_2_ph_value
# Activate your virtual environment
source ./color_2_ph_value/bin/activate
Then you need to install the required libraries using
pip install -r requirements.txt