学习OPENCV之读取图像和视频

读取图像的代码:

#include <opencv2\opencv.hpp>
#include <iostream>
#include <string>
using namespace cv;
using namespace std;
int main()
{
    Mat img = imread("1.jpg");
    if(img.empty())
    {
        cout<<"error";
        return -1;
    }
    imshow("xx的靓照",img);
    waitKey();

    return 0;
}


读取视频:(opencv读取视频是没有声音的,只是提取图像)

http://yu2xiangyang.blog.163.com/blog/static/3731563820106814831778/

#include "highgui.h"

int main( int argc ,char ** argv){
 CvCapture * capture = cvCreateFileCapture ("2.avi");  //读取视频
    if(capture==NULL) {
  printf("NO capture");    //读取不成功,则标识
    return 1;
   };    
    double fps=cvGetCaptureProperty(capture, CV_CAP_PROP_FPS );   //读取视频的帧率
 int vfps = 1000 / fps;                                        //计算每帧播放的时间
    printf("%5.1f\t%5d\n",fps,vfps);                             
 double frames=cvGetCaptureProperty(capture,CV_CAP_PROP_FRAME_COUNT);//读取视频中有多少帧
 printf("frames is %f\n",frames);
 cvNamedWindow("example",CV_WINDOW_AUTOSIZE);                  //定义窗口
 IplImage * frame;
 while(1){ 
  frame = cvQueryFrame( capture );                          //抓取帧
  float ratio = cvGetCaptureProperty(capture, CV_CAP_PROP_POS_AVI_RATIO);     //读取该帧在视频中的相对位置
  printf("%f\n",ratio);
  if(!frame)break;
  cvShowImage("example",frame);                          //显示
  char c = cvWaitKey(vfps);
  if(c == 27 )break;
 }
 cvReleaseCapture(&capture);
 cvDestroyWindow("example");
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值