Chinaunix首页 | 论坛 | 博客
  • 博客访问: 42646
  • 博文数量: 20
  • 博客积分: 475
  • 博客等级: 下士
  • 技术积分: 215
  • 用 户 组: 普通用户
  • 注册时间: 2011-03-04 21:13
文章分类

全部博文(20)

文章存档

2011年(20)

我的朋友
最近访客

分类: C/C++

2011-08-25 21:17:08

  1. #include "cv.h"
  2. #include "highgui.h"
  3. #include <stdio.h>
  4. int g_slider_position =0;
  5. CvCapture * g_capture = NULL;
  6. void onTrackbarSlide(int pos){
  7.     cvSetCaptureProperty(g_capture, CV_CAP_PROP_POS_FRAMES,pos);
  8. }
  9. int main(int argc ,char **argv)
  10. {
  11.     cvNamedWindow("Myvideo",CV_WINDOW_AUTOSIZE);
  12.     g_capture =cvCreateFileCapture(argv[1]);
  13.     int frames=(int)cvGetCaptureProperty(g_capture,CV_CAP_PROP_FRAME_COUNT);
  14.     if(frames!=0){
  15.         cvCreateTrackbar("position","Myvideo",&g_slider_position,frames,onTrackbarSlide);
  16.     }
  17.     IplImage* frame;
  18.     while(1){
  19.         frame = cvQueryFrame(g_capture);
  20.         cvCreateTrackbar("position","Myvideo",&g_slider_position,frames,onTrackbarSlide);
  21.         g_slider_position++;
  22.         if( !frame)
  23.             break;
  24.         cvShowImage("Myvideo",frame);
  25.         char c =cvWaitKey(33);
  26.         if(c==27)
  27.             break;
  28.     }
  29.     cvReleaseCapture(&g_capture);
  30.     cvDestroyWindow("Myvideo");
  31. }
阅读(957) | 评论(0) | 转发(0) |
0

上一篇:Opencv显示图像

下一篇:Opencv之Smooth处理

给主人留下些什么吧!~~