C++奇怪的访问违规Visual studio 2015 RC



我真的对这个错误感到困惑——我不知道这是C++问题、OpenCV问题、IDE问题还是缺乏知识。我使用的是VS2015 RC,OpenCV 2.4.10。这是我的代码

void cluster(cv::Mat &im)
{
cv::Mat thresholded = im.clone();
threshold(im, thresholded, 254, 255, CV_THRESH_BINARY);
// Setup SimpleBlobDetector parameters.
SimpleBlobDetector::Params params;
params.filterByCircularity = false;
params.filterByInertia = false;
params.filterByColor = false;
// Change thresholds
params.minThreshold = 200;
params.maxThreshold = 250;
// Filter by Area.
params.filterByArea = true;
params.minArea = 50;
// Filter by Convexity
params.filterByConvexity = true;
params.minConvexity = 0;
params.maxConvexity = 1;
// Set up the detector with default parameters.
SimpleBlobDetector detector(params);

// Detect blobs.
std::vector<KeyPoint> keypoints;
detector.detect(thresholded, keypoints);
}

当我运行这个代码时,每一行都执行得很好,但在函数结束时,我得到了以下错误

Exception thrown at 0x00007FFAC07A51EA (ntdll.dll) in OP4.exe: 0xC0000005: Access violation reading location 0xFFFFFFFFFFFFFFFF.
Unhandled exception at 0x00007FFAC07A51EA (ntdll.dll) in OP4.exe: 0xC0000005: Access violation reading location 0xFFFFFFFFFFFFFFFF.

如果我用默认构造函数初始化SimpleBlobDetector,问题就不会出现。我检查了detect函数的返回,它返回了正确的值,我甚至绘制了它。但当函数结束时,错误就会出现。我也试着增加堆栈大小。我还试着把它放在主功能中,但它最终导致了访问违规!!

救命!

我认为这可能是VS2015 RC的问题,我在VS2010上使用完全相同的代码创建了一个新项目,它的工作原理很有魅力!

相关内容

  • 没有找到相关文章

最新更新