我在Visual Studio 2012中的opencv 2.4.2中遇到了cv::HOGDescriptor
的问题。
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.
有没有人遇到过这种问题?