InstallationΒΆ

crop-row-detector is a python package and can be installed with pip or another package manager such as uv:

Note

Python 3.11 or newer is required!

pip install .

It have the following main dependencies:

  • matplotlib

  • numpy

  • rasterio

  • scikit-learn

  • scipy

  • pandas

  • opencv

  • pybaselines

  • tqdm

If you want changes in the code to be reflected install it as an editable with:

pip install -e .

All of these methods can also be used inside a virtual environment:

python -m venv venv
source venv/bin/activate
pip install .