我想从简短的.mp4视频中提取所有帧,并将它们作为图像保存到文件夹中。但是当我调用函数cv :: VideoCapture :: read()时,它无法提取帧。我的代码有什么问题?
#include <iostream>
#include <string>
#include <opencv2/opencv.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/videoio.hpp>
int main(int argc, const char * argv[]) {
cv::VideoCapture cap("test.mp4");
if (!cap.isOpened()) {
std::cout << "Cannot open the video file.\n";
return -1;
}
for (int frame_count = 0; frame_count < cap.get(cv::CAP_PROP_FRAME_COUNT); frame_count++) {
cap.set(cv::CAP_PROP_POS_FRAMES, frame_count);
cv::Mat frame;
if (!cap.read(frame)) {
std::cout << "Failed to extract a frame.\n";
return -1;
}
std::string image_path = "frames/" + std::to_string(frame_count) + ".jpg";
cv::imwrite(image_path, frame);
}
return 0;
}
我的输出总是&#34;无法提取帧。&#34;。
答案 0 :(得分:1)
在教程provided above上,有一条说明:
取消选中WITH_FFMPEG
ffmpeg库包含mp4编解码器,您需要检查WITH_FFMPEG
和USE_FFMPEG
才能读取.mp4和许多其他格式。