我在窗体应用程序中的 VS2008 C++ 中的 Windows 7 上。当我尝试使用findContours
(Opencv 2.4.2)时,我得到一个System.AccessViolationException
. “灰色”图像一切正常,似乎 findContours 无法初始化矢量。这是代码:
vector<vector<cv::Point> > contours;
threshold(gray, threshold_output, threshDiff, 255, THRESH_BINARY);
imshow("input_img", gray);
findContours(gray, contours, CV_RETR_TREE, CV_CHAIN_APPROX_NONE);