Multi Vision Camera
www.hontek.co.kr
http://cafe.naver.com/hontek
35
3. Software Architecture
3.5 OpenCV Control Dialog
OpenCV 라이브러리를 이용한 예.
Fig 34. OpenCV Control Dialog
–
동영상
저장
3.5.10 동영상 저장
동영상으로 저장한다.
// 저장시작
VideoOut =
cvCreateVideoWriter(
tmp,
-1,
value-5,
cvGetSize(imgGray),
1);
// 저장
cvWriteFrame(VideoOut, imgIntP);
// 저장 종료
cvReleaseVideoWriter(&VideoOut);