The algorithms are tested on Ubuntu version 18.04 up to 22.04 with OpenCV 3.4.16.
git submodule update --init --recursive
mkdir build
cd build
cmake ..
make
To run on a test video, execute:
./proj
To create a wheel file inside the dist folder:
python setup.py bdist_wheel
Install it using pip:
pip install dist/*
To test on a video, run:
python test.py
To visualize tracked lines (including old ones), set VIS_TRACK to True inside the main file.