2012-03-31 68 views
0

我是OpenCV和C++的新手。我得到了OpenCV與Microsoft Visual Studio 2008(32位)的合作,並設法讓Filtering Tutorial/Sobel Derivatives和其他教程正常工作。OpenCV級聯分類器教程異常

#include "opencv2/objdetect/objdetect.hpp" 
#include "opencv2/highgui/highgui.hpp" 
#include "opencv2/imgproc/imgproc.hpp" 

#include <iostream> 
#include <stdio.h> 

using namespace std; 
using namespace cv; 

/** Function Headers */ 
void detectAndDisplay(Mat frame); 

/** Global variables */ 
String face_cascade_name = "haarcascade_frontalface_alt.xml"; 
String eyes_cascade_name = "haarcascade_eye_tree_eyeglasses.xml"; 
CascadeClassifier face_cascade; 
CascadeClassifier eyes_cascade; 
string window_name = "Capture - Face detection"; 
RNG rng(12345); 

/** @function main */ 
int main(int argc, const char** argv) 
{ 
    CvCapture* capture; 
    Mat frame; 

    //-- 1. Load the cascades 
    if(!face_cascade.load(face_cascade_name)){ printf("--(!)Error loading\n"); return -1; }; 
    if(!eyes_cascade.load(eyes_cascade_name)){ printf("--(!)Error loading\n"); return -1; }; 

    //-- 2. Read the video stream 
    capture = cvCaptureFromCAM(-1); 
    if(capture) 
    { 
    while(true) 
    { 
     frame = cvQueryFrame(capture); 

     //-- 3. Apply the classifier to the frame 
     if(!frame.empty()) 
     { detectAndDisplay(frame); } 
     else 
     { printf(" --(!) No captured frame -- Break!"); break; } 

     int c = waitKey(10); 
     if((char)c == 'c') { break; } 
     } 
    } 
    return 0; 
} 

/** @function detectAndDisplay */ 
void detectAndDisplay(Mat frame) 
{ 
    std::vector<Rect> faces; 
    Mat frame_gray; 

    cvtColor(frame, frame_gray, CV_BGR2GRAY); 
    equalizeHist(frame_gray, frame_gray); 

    //-- Detect faces 
    face_cascade.detectMultiScale(frame_gray, faces, 1.1, 2, 0|CV_HAAR_SCALE_IMAGE, Size(30, 30)); 

    for(int i = 0; i < faces.size(); i++) 
    { 
    Point center(faces[i].x + faces[i].width*0.5, faces[i].y + faces[i].height*0.5); 
    ellipse(frame, center, Size(faces[i].width*0.5, faces[i].height*0.5), 0, 0, 360, Scalar(255, 0, 255), 4, 8, 0); 

    Mat faceROI = frame_gray(faces[i]); 
    std::vector<Rect> eyes; 

    //-- In each face, detect eyes 
    eyes_cascade.detectMultiScale(faceROI, eyes, 1.1, 2, 0 |CV_HAAR_SCALE_IMAGE, Size(30, 30)); 

    for(int j = 0; j < eyes.size(); j++) 
    { 
     Point center(faces[i].x + eyes[j].x + eyes[j].width*0.5, faces[i].y + eyes[j].y + eyes[j].height*0.5); 
     int radius = cvRound((eyes[j].width + eyes[i].height)*0.25); 
     circle(frame, center, radius, Scalar(255, 0, 0), 4, 8, 0); 
    } 
    } 
    //-- Show what you got 
    imshow(window_name, frame); 
} 

我已經添加了這些庫添加到鏈接器輸入: opencv_core230d.lib opencv_calib3d230d.lib opencv_contrib230d.lib

我使用他們的教程提供的代碼現在嘗試Cascade Classifier tutorial opencv_features2d230d.lib opencv_highgui230d.lib opencv_legacy230d.lib opencv_ml230d.lib opencv_imgproc230d.lib opencv_video230d的.lib opencv_objdetect230.lib opencv_gpu230d.lib opencv_haartraining_engined.lib

而且我在Visual Studio項目(其中解決方案文件所在)

的主目錄下的XML文件,但我得到以下錯誤,當我運行/調試:

**

First-chance exception at 0x76b1b9bc in OpenCV_CascadeClassifier.exe: Microsoft C++ exception: cv::Exception at memory location 0x002ff1d0.. 
Unhandled exception at 0x77e315de in OpenCV_CascadeClassifier.exe: Microsoft C++ exception: cv::Exception at memory location 0x002ff1d0.. 

**

它不顯示一行代碼是錯誤的,但指向我的內存位置,並顯示我反彙編代碼,我不明白。

問:我如何從我的攝像頭讓視頻流在Visual Studio OpenCV的代碼進行溝通?這是問題所在還是我缺少其他東西?

編輯:該錯誤實際上發生在加載級聯的第一行。我曾嘗試將級聯xmls放在不同的地方,但沒有成功。

任何幫助表示讚賞。

回答

1

您通過以下電話視頻流連接的OpenCV:

capture = cvCaptureFromCAM(-1); 

frame = cvQueryFrame(capture); 

第一個電話將設置你的相機 - 它會選擇任何可用的 - ,第二個將檢索幀。代碼在出錯時會做出很多假設,因此很難說出問題的根源。

我的建議是運行在調試模式(設置在第一行設置一個斷點)的代碼中,個XML複製到正確的地方 - 你可能需要把它放在你的Debug文件夾或項目的根 - 並一直行,直到拋出異常。之後,您可以告訴我們發生了哪一行,我們可以解決問題。

親切的問候, 丹尼爾

+0

嗨dannyxyz22,感謝您的迴應。我調試和代碼似乎在第一次加載xml行抱怨:'if(!face_cascade.load(face_cascade_name)){printf(「 - (!)Error loading \ n」);返回-1; };」 – 2012-03-31 04:28:39

+0

我已經嘗試將xml文件放在4個不同的位置。 (包括兩個Debug文件夾) – 2012-03-31 04:29:39

+0

我也嘗試過爲xml文件指定完整路徑C:\ Users ...等,但我仍然遇到類似的錯誤。 – 2012-03-31 04:38:47