Monocular Visual Odometry (VO) system written in C++.
git clone https://github.com/tjchase34/MonoVO.git
cd MonoVO/
mkdir build
cd build/
cmake ..
make
From the root project directory:
./build/MonoVO [INPUT IMAGE FOLDER] [OUTPUT POSE SERIES FILENAME] [NUM FRAMES] [KEYFRAME NUM]
Example run with KITTI images (sequence 00) at /mnt/d/Shared/data/images/
, processing the first 500 frames, and selecting every 10th frame as a keyframe:
./build/MonoVO /mnt/d/Shared/data/images/ pose_results.txt 500 10