0

这是代码

CvMemStorage *mem123 = cvCreateMemStorage(0);
CvSeq* ptr123;CvRect face_rect123;
CvHaarClassifierCascade* cascade123 = (CvHaarClassifierCascade*)cvLoad("haarcascade_frontalface_alt2.xml" );    //detects the face if it's frontal
void HeadDetection(IplImage* frame,CvRect* face){
    ptr123=cvHaarDetectObjects(frame,cascade123,mem123,1.2,2,CV_HAAR_DO_CANNY_PRUNING);
    if(!ptr123){return ;}
    if(!(ptr123->total)){return ;}
    face_rect123=*(CvRect*)cvGetSeqElem( ptr123, 0 );   //CvRect face_rect holds the position of Rectangle
    face->height=face_rect123.height;
    face->width=face_rect123.width;
    face->x=face_rect123.x;
    face->y=face_rect123.y;
    return ;
}//detects the position of head and it is fed in CvRect*face as rectangle
int main(){
    IplImage* oldframe=cvCreateImage(cvSize(640,480),8,3);
    CvCapture* capture=cvCaptureFromCAM(CV_CAP_ANY);
    CvRect a;a.height=0;a.width=0;a.x=0;a.y=0;
    while(1){

        oldframe=cvQueryFrame(capture); //real frame captured of size 640x480
        cvFlip(oldframe,oldframe,1);
        cvResize(oldframe,frame);   //frame scaled down 4 times 
        HeadDetection(frame,&a);
        cvShowImage("frame",frame);
        cvWaitKey(1);
    }
}

这里如果“HeadDetection(frame,&a);” 被评论,然后使用任务管理器我看到angledetection.exe(我的项目名称)消耗了20188 Kb内存(然后没有发生内存泄漏)。

但是,如果我不评论任务管理器显示正在发生一些内存泄漏(大约 300Kb/s)

我在 64 位 Windows 7 位操作系统(核心 2 双核)上使用 VS 2010。

此代码试图通过 OpenCV 2.1 中的 haar 检测来检测人脸并获取​​正方形的四个角

如有任何不清楚的地方,请询问。:-)

提前致谢。

4

1 回答 1

1

当您调用cvHaarDetectObjects.

但是您永远不会释放它(ptr123指向的对象)。

face_rect123也没有被释放。

顺便说一句,您应该考虑重构代码并为变量提供更好的名称。

于 2012-06-22T07:17:13.527 回答