我有两个关于蛇边缘检测的问题。第一个问题是,在openCV中有一个函数cvSnakeImage(src,points,……),points参数是什么意思?
第二个问题是:我想把这个函数应用于我已经做过的边包围的部分,我该怎么做?
这是我的边缘检测代码:
cvCanny(img_bw, img_canny , thresh, thresh * 50, 3);
cvFindContours(img_canny, contour, &contours, sizeof(CvContour), CV_RETR_TREE, CV_CHAIN_APPROX_SIMPLE);
points参数是指向snakes点数组的指针
https://fossies.org/dox/opencv-2.4.8/snakes_8cpp_source.html
以下是如何使用蛇的示例
http://download.andol.info/cvsnakeimage.cpp