1

cv::HOGDescriptor我对Visual Studio 2012 中的 opencv 2.4.2有一些问题。

vector<cv::Rect> found, found_filtered;
cv::HOGDescriptor hog;
hog.setSVMDetector(cv::HOGDescriptor::getDefaultPeopleDetector()); // CRASH HERE
hog.detectMultiScale(tempFrame, found, 0, cv::Size(8, 8), cv::Size(32, 32), 1.05, 2);

它绝对是在 XCode 中运行但不在 Visual Studio 2012 中运行的示例代码的副本。

错误信息是

HEAP[Project.exe]: Invalid address specified to RtlValidateHeap( 00C80000, 02D51150 )
Project.exe has triggered a breakpoint.

有没有人遇到过这种问题?

4

1 回答 1

1
  1. 右键单击项目 - 属性
  2. 配置属性 - 常规 - 设置平台工具集:“Visual Studio 2010 (v100)”
  3. 配置属性 - C/C++ - 代码生成 - 设置运行时库:“多线程调试 DLL (/MDd)”用于调试构建或“多线程 DLL (/MD)”用于发布构建
于 2012-09-15T05:53:20.663 回答