Opencv 3.1 display window without default button
Hello everyone,
currently i have a problem, please help me.
with this code
VideoCapture cap(0);
if(!cap.isOpened()) // check if we succeeded
return -1;
Mat edges;
namedWindow("edges",3);
cv::resizeWindow("edges",820,820);
for(;;)
{
Mat frame;
cap >> frame;
imshow("webcam", frame);
if(waitKey(30) >= 0) break;
}
but i want to display camera without button and coords for user, how i can to do this?
Did you compile opencv with Qt support? I think you cannot do what you want without recompiling opencv without Qt support.
Does the following do what you want?