This will be a repository for exploring SLAM topics based lectures by Professor Claus Brenner. Rather than Python, the associated code for the lectures and assignments will be written in modern C++.
- CMake
- Compiler version that supports C++17
Clone repo
git clone git@github.com:patrick--/SLAM-Exploration.gitMove into clone repo
cd SLAM-ExplorationCreate build directory and generate build dependencies
mkdir build &&cd build cmake ..
Build All Examples
make
Run Examples
./UnitA/slam_01_a_plot_motor_ticks
robot4_motors.txt- Sample motor encoder data from robot
slam_01_a_plot_motor_ticks.cpp- Plot the raw motor encoder dataslam_01_b_print_motor_increments.cpp- Print differential motor encoder dataslam_01_c_plot_motor_increments.cpp- Plot differential motor encoder data



