Python/C++ implementation of the SLIC supervoxel method.
This package is a port of a MATLAB/mex implementation by Radhakrishna Achanta available here.
This software requires the Boost library to wrap C++ code for use in Python.
sudo apt-get install libboost-all-dev
From the project's root, install the Python package with:
mkdir build
cd build
cmake ..
make
python3 src/setup.py install
The provided file demo.py indicates the typical steps to generate supervoxels from Python.