Implementation of the Simple Linear Iterative Clustering superpixel algorithm in C++ (https://www.epfl.ch/labs/ivrl/research/slic-superpixels/).
Dependencies:
- C++17
- OpenCV is used for image I/O and color space conversion.
- Eigen is used for matrices.
.
├─ include/
├─ src/
├─ data/
├─ build/
└─ CMakeLists.txt
core.*: SLIC algorithmrender.*: visualization / renderingio.*: image loading and preprocessingutils.*: helper functionsmain.cpp: main
