Superpixel Benchmark
Superpixel benchmark, tools and algorithms.
ccs_opencv.h
Go to the documentation of this file.
1 
32 #ifndef CSS_OPENCV_H
33 #define CSS_OPENCV_H
34 
35 #include <opencv2/opencv.hpp>
36 
40 class CCS_OpenCV {
41 public:
50  static void computeSuperpixels(const cv::Mat &image, int region_size,
51  int iterations, int compactness, bool lab, cv::Mat &labels);
52 };
53 
54 #endif /* CSS_OPENCV_H */
55 
static void computeSuperpixels(const cv::Mat &image, int region_size, int iterations, int compactness, bool lab, cv::Mat &labels)
Computer superpixels using CCS; for details also see README.md.
Definition: ccs_opencv.cpp:37
Wrapper for running CCS using OpenCV images.
Definition: ccs_opencv.h:40