Go to the documentation of this file.00001 #include <opencv2/core/core.hpp>
00002 namespace cpl_superpixels
00003 {
00004 cv::Mat getSuperpixelImage(cv::Mat input_img, int& num_ccs,
00005 cv::Mat& display_img, double sigma=0.3,
00006 double k=500.0, int min_size=10);
00007 cv::Mat getSuperpixelImage(cv::Mat color_img, cv::Mat depth_img, int& num_ccs,
00008 cv::Mat& display_img, double sigma=0.3,
00009 double k=500.0, int min_size=10, double wr=0.1,
00010 double wg=0.1, double wb=0.1, double wd=0.7);
00011 };