问题如下:
有一个 CIF 视频文件应该由 OpenCV 处理。不幸的是,我无法从该视频中读取帧。以下代码
cv::VideoCapture cap = cv::VideoCapture("foreman.cif");
if(!cap.isOpened()) {
std::cout << "Open file error" << std::endl;
return -1;
}
Open file error
在控制台中给出。
有没有办法使用 OpenCV 从 CIF 视频中抓取帧?