Welcome to opencv api.
Python version 3.5 and above
git clone https://github.com/Rhode01/feature_extraction_with_openCv_api.git
cd feature_extraction_with_openCv_api
python -m venv myvenv
This command will install the required packages specified in the requirements.txt
pip install > requirements.txt
uvicorn main:app --reload
Using the API Once the server is running, open your browser and navigate to localhost:8000/docs. Here, you'll find the Swagger UI documentation for the API, allowing you to make requests. Provide the path to the picture that you want to map its features using a JSON request like:
{
"path": "The link to the picture"
}