34// 将图像数据转换为meanshift算法执行时的数据点 IplImage* create_input4meanshift(IplImage* img, int r);
// 对每一个小区域进行meanshift聚类,返回中心处的数据
double meanshift(double* serArr, int p, int length);
// input image should be color image
IplImage* pic_meanshift(IplImage* img, int r);
#endif
35 IplImage* create_input4meanshift(IplImage* img, int r);
36
37// 对每一个小区域进行meanshift聚类,返回中心处的数据 double meanshift(double* serArr, int p, int length);
// input image should be color image
IplImage* pic_meanshift(IplImage* img, int r);
#endif
38double meanshift(double* serArr, int p, int length);