Notice
Recent Posts
Recent Comments
Link
목록FOURCC (1)
DY의 세상구경
open cv를 이용하여 영상 잘라내기
open cv를 이용하여 영상 잘라내기 2.4.11버전을 사용하였다. 1234567891011121314151617181920212223242526272829303132#include "opencv.hpp"using namespace cv; int main(){ const string path = "C:/xxx/xxxx.../input.avi"; VideoCapture videoCapture(path); if (!videoCapture.isOpened()) return EXIT_FAILURE; double fps = videoCapture.get(CV_CAP_PROP_FPS); int width = (int)videoCapture.get(CV_CAP_PROP_FRAME_WIDTH); int height ..
IT/영상처리 관련
2016. 9. 8. 13:23