0
在嘗試讀取opencv中的.yuv視頻文件時遇到特定問題。我的代碼如下:在opencv中讀取YUV文件
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/opencv.hpp>
using namespace cv;
using namespace std;
int main(void)
{
VideoCapture cap("video/balloons1.yuv"); // open the video file for reading
if (!cap.isOpened()) // if not success, exit program
{
cout << "Cannot open the video file" << endl;
return -1;
}
return 0;
}
我已經安裝了FFmpeg的下面從這個網站上的說明:http://www.wikihow.com/Install-FFmpeg-on-Windows,安裝似乎是正確的。有沒有人有任何想法可能是什麼問題?
感謝您清理這個!我會盡量找到解決辦法 – user1816546