#include <iostream>
#include <opencv2/opencv.hpp>
#include <vector>
using namespace std;
using namespace cv;
int main()
{
cout << "Hello World!\n";
VideoCapture cap("Angel.mp4");
vector<Mat> ims;
int i = 0;
while (1)
{
Mat im;
cap >> im;
if (!im.data) break;
// cout << im.size() << endl;
resize(im, im, im.size() / 2);
ims.push_back(im);
applyColorMap(im, im, COLORMAP_CIVIDIS);
imshow("video", im);
imwrite("test" + to_string(i) + ".png", im);
i++;
waitKey(1);
}
for (int i = ims.size() - 1; i >= 0; i--) {
applyColorMap(ims[i], ims[i], COLORMAP_TWILIGHT_SHIFTED);
imshow("video", ims[i]);
imwrite("test_" + to_string(i) + ".png", ims[i]);
waitKey(1);
}
destroyAllWindows();
cap.release();
return 0;
}
herrDeng網內搜尋
自訂搜尋
Ads
2023年4月14日 星期五
C++ opencv videoCapture loop vector練習與動畫
訂閱:
張貼留言 (Atom)
熱門文章
-
計算你上學期加權平均
-
產生50個元素的陣列並排序
-
請用 C/C++/java寫一簡易程式
-
Caesar挪移碼密文: MCLGZ 請破譯!
-
計算你的BMI
-
借錢500萬,年利18%,每月複利計算,請問連本帶利的金額 5, 10, 15, 20, 25, 30, 35, 40, 45, 50年的金額。並比較公式: A*exp(0.18n) A*(1+0.18/12)^(12*n), n=年數, A=本金 hint: math.h, p...
-
array ex 1, 2,3,7,8
-
利用static方法輸出BMI
-
Fibonacci sequence: a[0]=1, a[1]=1, a[2]=2, a[3]=3, a[4]=5,...... In general, a[n]=1 as n=0,1, a[n]=a[n-1]+a[n-2] as n>=2. Use this...
沒有留言:
張貼留言