请opencv高手帮忙把这个程序从读取摄像头改成读取视频

2024-12-31 12:00:49
推荐回答(1个)
回答1:

cvcapture默认读取的是IplImage,试试看用VideoCapture吧


VideoCapture capture("D:/videos/test.avi");
Mat frame;
while(capture.read(frame)){
//读取下一帧
    ...
    imshow("frame",frame);
    ...
}