我正在尝试将 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 的最后一行触发断点。
有人有什么想法吗?