zoukankan      html  css  js  c++  java
  • openCV播放视频的程序

    // sample23视频.cpp : 定义控制台应用程序的入口点。
    //

    #include "stdafx.h"
    #include "highgui.h"
    #include "cv.h"

    int _tmain(int argc, _TCHAR* argv[])
    {
     cvNamedWindow("Example2",CV_WINDOW_AUTOSIZE);
     
     CvCapture* capture = cvCreateFileCapture("D:\\bak\\k\\jiebiao.avi");
       
     IplImage*   frame;

     while(1){
      frame = cvQueryFrame(capture);
      if(!frame)
       break;
      cvShowImage("Example2",frame);
      char c = cvWaitKey(1);
      if(c == 27)
       break;
     }
     
     cvReleaseCapture(&capture);
     cvDestroyWindow("Example2");

     return 0;
    }

    /*
    int cvWaitKey( int delay=0 );延迟的毫秒数。
    函数cvWaitKey无限制的等待按键事件(delay<=0时);或者延迟"delay"毫秒。返回值为被按键的值,如果超过指定时间则返回-1。
    注释:这个函数是HighGUI中唯一能够获取和操作事件的函数,所以在一般的事件处理中,它需要周期地被调用,除非HighGUI被用在某些能够处理事件的环境中。
    译者注:比如在MFC环境下,这个函数不起作用。
    */

    /Files/qqhfeng/sample23视频.rar

  • 相关阅读:
    时间工厂[XDU1013]
    奇妙的旅行[XDU1012]
    金子上的友情[XDU1011]
    素数环问题[XDU1010]
    转盘游戏[XDU1006]
    跳舞毯[XDU1005]
    Tri Tiling[HDU1143]
    A Walk Through the Forest[HDU1142]
    核反应堆[HDU2085]
    How Many Trees?[HDU1130]
  • 原文地址:https://www.cnblogs.com/qqhfeng/p/2162099.html
Copyright © 2011-2022 走看看