摘要:
对实时的视屏流进行处理,实质还是对单幅图片进行处理! #include "stdafx.h"#include "cv.h"#include "highgui.h"int g_slider_position = 0;CvCapture * g_capture =NULL;void onTrackbarSlide(int pos){ //再拖动滚动条的时候,滚动条的位置会被作为int数字传入 cvSetCaptureProperty( g_capture, CV_CAP_PROP_POS_FRAMES, pos );} v... 阅读全文
posted @ 2014-01-18 21:21 huhuuu 阅读(765) 评论(0) 推荐(0) 编辑