0

我正在尝试将 Opencv2.4.4 中的 findContours 函数与 VS2010express(C++) 一起使用,代码如下。垫 canny_output; std::vector > 轮廓;

/// Detect edges using canny
Canny( src_gray, canny_output, 100, 200, 3 );
/// Find contours
threshold(canny_output,canny_output,0,255,THRESH_BINARY);

findContours( canny_output, contours, CV_RETR_TREE, CV_CHAIN_APPROX_SIMPLE );

但程序总是会在系统错误 System.AccessViolationException 的最后一行触发断点。

有人有什么想法吗?

4

1 回答 1

0

建议:

  1. 确保contoursvector< vector<Point> >
  2. 在 Canny 操作之后,您可以直接将边缘提供给 findContour ..为什么要进行阈值处理?阈值也为零...跳过该行...因为 canny 的输出是二进制图像。
  3. 确保cannny_output也是灰色图像。

编辑:试试这个..虽然这给出了外部轮廓..检查 findcontour 是否正在运行..

findContours(canny_output,contours,CV_RETR_EXTERNAL,CV_CHAIN_APPROX_NONE,Point())

于 2013-03-28T03:13:09.990 回答