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.
有没有人遇到过这种问题?