使用OpenCV的对象跟踪脚本中的慢速视频

时间:2013-02-16 04:25:07

标签: c++ opencv

我在openCV和C ++中编写了一个简短的例程来跟踪带有网络摄像头的对象。网络摄像头的配方速度很快,没有延迟,但在周末离开工作之前,我记录了一个典型的序列,当我工作到周一时,用作测试模板。这和代码的相应变化以某种方式使视频以非常慢的速度播放。这是代码,打开“Test.avi”,大约20秒,而不是从网络摄像头运行恒定流:

#include <opencv2/opencv.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <iostream>
#include <vector>

using namespace cv;
using namespace std;

Mat drawBoundingBoxes (Mat canvasImage, vector<vector<Point>> contours);

int main(int argc, char** argv[])
{
    Mat frame;
    Mat back;
    Mat fGround;
    BackgroundSubtractorMOG2 bGround;
    bGround.nmixtures = 3;
    //bGround.nShadowDetection = 0;
    bGround.fTau = .5;

    VideoCapture cap;
    cap.open("Test.avi");
    if (!cap.isOpened())
    {
        cout << "Can't open video" << endl;
        return -1;
    }

    vector<vector<Point>> contours;
    namedWindow("video", CV_WINDOW_AUTOSIZE);

    while (true)
    {
        static int count = 1;
        cap >> frame;
        if (frame.empty())
            break;

        bGround.operator()(frame, fGround);
        bGround.getBackgroundImage(back);
        erode(fGround, fGround, Mat(), Point(-1,-1), 2, BORDER_DEFAULT);
        dilate(fGround, fGround, Mat(), Point(-1,-1), 10, BORDER_DEFAULT);

        if (count > 50)
        {
            findContours(fGround, contours, CV_RETR_EXTERNAL, CV_CHAIN_APPROX_NONE);
            drawContours(frame, contours, -1, Scalar(239,255,0), 2);
            drawBoundingBoxes(frame, contours);
        }

        imshow("video", frame);

        if(waitKey(30) >= 0) 
            break;
        count++;
    }
    return 0;
}

Mat drawBoundingBoxes (Mat canvasImage, vector<vector<Point>> contours)
{
    vector<Rect> boundRect(contours.size());

    for (int i=0; i<contours.size(); i++)
    {
        boundRect[i] = boundingRect(contours[i]);
        rectangle(canvasImage, boundRect[i], Scalar(153,0,76), 2, 8, 0);
    }
    return canvasImage;
}

有什么想法吗?内存泄漏到哪儿?谢谢,

托尼

1 个答案:

答案 0 :(得分:1)

我相信您录制的视频的帧速率高于您的PC可以实时处理的帧速率。这不是网络摄像头的问题,因为它只是丢帧。您可以尝试减少waitKey()过程中的延迟,看看是否有帮助。