我需要从 OpenCV 获取视频的帧馈送。我的代码运行良好,但我需要在每毫秒获取它正在处理的帧。
我在 Linux 上使用 cmake。
我的代码:
#include "cv.h"
#include "highgui.h"
using namespace cv;
int main(int, char**)
{
VideoCapture cap(0); // open the default camera
Mat frame;
namedWindow("feed",1);
for(;;)
{
Mat frame;
cap >> frame; // get a new frame from camera
imshow("feed", frame);
if(waitKey(1) >= 0) break;
}
return 0;
}