我正在学习使用C ++的OpenCV库并陷入这行代码中" cap>>帧;"
cv::Mat frame;
while(1)
{
cap>> frame; // <= What does this line do in the program
if(!frame.data)break;
cv::imshow("Input", frame);
if(cv::waitKey(33)>= 0) break;
}
return 0;
}
答案 0 :(得分:0)
这行代码从相机中获取新帧
cap>> frame;