在opencv中找到带有“System.AccessViolationException”的轮廓
Posted
技术标签:
【中文标题】在opencv中找到带有“System.AccessViolationException”的轮廓【英文标题】:findContours in opencv with "System.AccessViolationException" 【发布时间】:2013-03-28 02:05:12 【问题描述】:我正在尝试将 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 的最后一行触发断点。
有人知道吗?
【问题讨论】:
【参考方案1】:建议:
-
确保
contours
是vector< vector<Point> >
经过 Canny 操作后,您可以直接将边缘提供给 findContour..为什么要进行阈值处理?阈值也为零...跳过该行...因为 canny 的输出是二进制图像。
确保cannny_output
也是灰色图像。
编辑:试试这个..虽然这给出了外部轮廓..检查 findcontour 是否正常..
findContours(canny_output,contours,CV_RETR_EXTERNAL,CV_CHAIN_APPROX_NONE,Point())
【讨论】:
我已经将轮廓定义为vector以上是关于在opencv中找到带有“System.AccessViolationException”的轮廓的主要内容,如果未能解决你的问题,请参考以下文章