This is a minimal CMake project that shows how to use Rerun in your code in conjunction with Eigen and OpenCV.
The Rerun C++ SDK works by connecting to an awaiting Rerun Viewer over TCP.
- Install
cargo
cargo install rerun-cli
pip install rerun-sdk
Just type rerun
and the rerun viewer should show up. Then it is time to run this example!
The easiest way to get started is to install pixi.
- Start the rerun viewer with
rerun
(see above) - Run the example with
pixi run run
First install the required dependencies:
arrow-cpp
(required by Rerun)eigen
andopencv
(required by this example)cmake
andninja
(build tools)
Build using:
mkdir build
cd build
cmake ..
cmake --build . -- -j8
Then run the binary with:
build/rerun_ext_example