Opencv: unable to load new frame when detecting Hough strings

I am trying to detect Hough Lines in a video captured by a camera. The problem is that in order to load a new frame, I need to close the current window, after which a new window automatically opens with a new frame. I just want to get rid of closing windows to load new frames. How can I play a video in one window without closing it?

#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <iostream>

using namespace cv;
using namespace std;

int main()
{
VideoCapture stream(0);

if(!stream.isOpened()){
    cout << "\nCannot open video camera";
} else {    

    //CAPTURING FRAMES FROM CAMERA
    while( true ){
        Mat src;
        stream.read(src);

        //Mat src = imread("D:/LineDetection.png", 0);

        Mat dst, cdst;
        Canny(src, dst, 50, 200, 3); 
        cvtColor(dst, cdst, CV_GRAY2BGR); 

        vector<Vec2f> lines;
        // detect lines
        HoughLines(dst, lines, 1, CV_PI/180, 150, 0, 0 );

        // draw lines
        for( size_t i = 0; i < lines.size(); i++ )
        {
            float rho = lines[i][0], theta = lines[i][1];
            Point pt1, pt2;
            double a = cos(theta), b = sin(theta);
            double x0 = a*rho, y0 = b*rho;
            pt1.x = cvRound(x0 + 1000*(-b));
            pt1.y = cvRound(y0 + 1000*(a));
            pt2.x = cvRound(x0 - 1000*(-b));
            pt2.y = cvRound(y0 - 1000*(a));
            line( cdst, pt1, pt2, Scalar(0,0,255), 3, CV_AA);
        }

        imshow("source", src);
        imshow("detected lines", cdst);

        if( waitKey() == 32 )
            break;

        }

}

return 0;
}
+4
source share
1 answer

Change waitKey () to waitKey (10).

waitKey () - will wait for an infinite time for pressing a key.

+5
source

Source: https://habr.com/ru/post/1548398/


All Articles