我是靠谱客的博主 称心香水,最近开发中收集的这篇文章主要介绍用opencv查看视频信息(视频的宽度、高度、帧率和总得帧数),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

用opencv查看视频信息(视频的宽度、高度、帧率和总得帧数)


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

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

int _tmain(int argc, _TCHAR* argv[])
{
	IplImage *nFrames = NULL;
	CvCapture* pCapture = NULL;

	if( !(pCapture = cvCaptureFromAVI("C:\zcd.avi")))
	{
		fprintf(stderr, "Can not open camera.n");
		return -1;
	}

	int frameH    = (int) cvGetCaptureProperty(pCapture, CV_CAP_PROP_FRAME_HEIGHT);  
	int frameW    = (int) cvGetCaptureProperty(pCapture, CV_CAP_PROP_FRAME_WIDTH);  
	int fps       = (int) cvGetCaptureProperty(pCapture, CV_CAP_PROP_FPS);  
	int numFrames = (int) cvGetCaptureProperty(pCapture, CV_CAP_PROP_FRAME_COUNT);  
	printf("vedio's nwidth = %dt height = %dn video's fps = %dt nums = %d", frameW, frameH, fps, numFrames);

	getchar();
	return 0;
}


最后

以上就是称心香水为你收集整理的用opencv查看视频信息(视频的宽度、高度、帧率和总得帧数)的全部内容,希望文章能够帮你解决用opencv查看视频信息(视频的宽度、高度、帧率和总得帧数)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(55)

评论列表共有 0 条评论

立即
投稿
返回
顶部