這篇文章主要介紹了opencv3/C++怎么將圖片轉(zhuǎn)換為視頻的相關(guān)知識(shí),內(nèi)容詳細(xì)易懂,操作簡(jiǎn)單快捷,具有一定借鑒價(jià)值,相信大家閱讀完這篇opencv3/C++怎么將圖片轉(zhuǎn)換為視頻文章都會(huì)有所收獲,下面我們一起來看看吧。
成都創(chuàng)新互聯(lián)是專業(yè)的碑林網(wǎng)站建設(shè)公司,碑林接單;提供成都做網(wǎng)站、成都網(wǎng)站建設(shè),網(wǎng)頁(yè)設(shè)計(jì),網(wǎng)站設(shè)計(jì),建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行碑林網(wǎng)站開發(fā)網(wǎng)頁(yè)制作和功能擴(kuò)展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團(tuán)隊(duì),希望更多企業(yè)前來合作!現(xiàn)有一些圖片按順序放置在一文件夾jogging1\下,如圖:
需要將其合并轉(zhuǎn)換為一個(gè)視頻。
示例:
環(huán)境:Win7+OpenCV3+VS2012
#include#include #include #include #include #include using namespace std; using namespace cv; int main() { _finddata_t FileInfo; //讀取圖片所在的路徑 string inPath = "E:\\image\\yu\\jogging1\\"; string strfind = inPath + "*"; long Handle = _findfirst(strfind.c_str(), &FileInfo); char filename[300]; Mat src; if (Handle == -1L) { cerr << "can not match the folder path" << endl; exit(-1); } Mat frame; Mat src0 = imread("E:/image/yu/jogging1/0000.jpg"); Size size = src0.size(); VideoWriter writer; writer.open("jogging.avi", CV_FOURCC('M', 'J', 'P', 'G'), 25, size, true); do{ //判斷是否有子目錄 if (FileInfo.attrib & _A_SUBDIR) { if ((strcmp(FileInfo.name, ".") != 0) && (strcmp(FileInfo.name, "..") != 0)) { inPath += FileInfo.name; cout < 關(guān)于“opencv3/C++怎么將圖片轉(zhuǎn)換為視頻”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對(duì)“opencv3/C++怎么將圖片轉(zhuǎn)換為視頻”知識(shí)都有一定的了解,大家如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。
網(wǎng)站名稱:opencv3/C++怎么將圖片轉(zhuǎn)換為視頻-創(chuàng)新互聯(lián)
文章鏈接:http://weahome.cn/article/cdpsjd.html