qq_21019127 2015-12-07 02:02 采纳率: 100%
浏览 1316
已采纳

求大神寻找这段写视频代码的内存泄漏之处,菜鸟我实在找不出了

求大神围观~

 // OpenCVFindContours.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"  
#include "cxcore.h"   
#include "cv.h"   
#include "highgui.h"  

int _tmain(int argc, _TCHAR* argv[])
{
    CvCapture* pCapture = cvCreateCameraCapture(0);
    IplImage * pFrame;
    IplImage *psrc;
    IplImage *src = cvCreateImage(cvSize(700,700), IPL_DEPTH_8U,3);
    IplImage *gsrc = cvCreateImage(cvGetSize(src), IPL_DEPTH_8U,1);

    IplImage *dsw ;
    IplImage *dst;
    CvMemStorage *storage;
    CvSeq *first_contour;

    while(1)
    {
        psrc=cvQueryFrame(pCapture ); 

        cvResize(psrc,src,1);
        cvCvtColor(src,gsrc,CV_BGR2GRAY);

        dsw = cvCreateImage(cvGetSize(src), 8, 1);  
        dst = cvCreateImage(cvGetSize(src), 8, 3);

        storage = cvCreateMemStorage(0);  
        first_contour = NULL;  

        //turn the src image to a binary image  
        //cvThreshold(src, dsw, 125, 255, CV_THRESH_BINARY_INV);  
        cvThreshold(gsrc, dsw, 100, 255, CV_THRESH_BINARY);  

        cvFindContours(dsw, storage, &first_contour, sizeof(CvContour), CV_RETR_LIST, CV_CHAIN_APPROX_SIMPLE);  
        cvZero(dst);  
        int cnt = 0;  
        for(; first_contour != 0; first_contour = first_contour->h_next)  
        {  
            cnt++;  
            CvScalar color = CV_RGB(rand()&255, rand()&255, rand()&255);  
            cvDrawContours(dst, first_contour, color, color, 0, 2, CV_FILLED, cvPoint(0, 0));  
            CvRect rect = cvBoundingRect(first_contour,0);
            cvRectangle(dst, cvPoint(rect.x, rect.y), cvPoint(rect.x + rect.width, rect.y + rect.height),CV_RGB(255, 0, 0), 1, 8, 0);
        }  

        printf("the num of contours : %d\n", cnt);  

        cvNamedWindow( "Source", 1 );  
        cvShowImage( "Source", src );  

        cvNamedWindow( "dsw", 1 );  
        cvShowImage( "dsw", dsw );  

        cvNamedWindow( "Components", 1 );  
        cvShowImage( "Components", dst );  

    cvReleaseMemStorage(&storage);

        char c=cvWaitKey(10);
        if(c==27)
            break;  
    }

    cvDestroyWindow("Source");
    cvDestroyWindow("dsw");
    cvDestroyWindow("Components");

    cvReleaseImage(&pFrame);
    cvReleaseImage(&gsrc);
    cvReleaseImage(&src);
    cvReleaseImage(&dsw);
    cvReleaseImage(&dst);

    //cvReleaseMemStorage(&storage);
    cvReleaseCapture(&pCapture);

    return 0;  
}

  • 写回答

1条回答 默认 最新

  • 云霏阳 2015-12-07 08:22
    关注

    1.建议将下面2行代码移到while循环里面最后的位置看看。
    cvReleaseImage(&dsw);
    cvReleaseImage(&dst);

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 求差集那个函数有问题,有无佬可以解决
  • ¥15 【提问】基于Invest的水源涵养
  • ¥20 微信网友居然可以通过vx号找到我绑的手机号
  • ¥15 寻一个支付宝扫码远程授权登录的软件助手app
  • ¥15 解riccati方程组
  • ¥15 display:none;样式在嵌套结构中的已设置了display样式的元素上不起作用?
  • ¥15 使用rabbitMQ 消息队列作为url源进行多线程爬取时,总有几个url没有处理的问题。
  • ¥15 Ubuntu在安装序列比对软件STAR时出现报错如何解决
  • ¥50 树莓派安卓APK系统签名
  • ¥65 汇编语言除法溢出问题