Skip to content

Latest commit

 

History

History

README.md

Mixed Reality Tracking

Installation for C++

Prerequisites

The algorithms are tested on Ubuntu version 18.04 up to 22.04 with OpenCV 3.4.16.

Building

git submodule update --init --recursive
mkdir build
cd build
cmake ..
make

Running

To run on a test video, execute:

./proj

Python support

Creating a Wheel File

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

Modes of visualization

To visualize tracked lines (including old ones), set VIS_TRACK to True inside the main file.