Notice
Recent Posts
Recent Comments
Link
목록specific frame (1)
DY의 세상구경
opencv를 이용해 영상의 원하는 구간 잘라내기
opencv를 이용하여 영상 부분 잘라내기 원하는 구간을 잘라낼 때 사용한다. opencv 3.1 기준. 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657#include #include using namespace std;using namespace cv; #define input "input.avi"#define output "output.avi"#define startFrame 500#define endFrame 1000 int main(){ int iCurrentFrame = 0; VideoCapture vc = VideoCapture(input); if (!v..
IT/영상처리 관련
2016. 11. 22. 22:38