首页 > 其他 > 详细

openCV学习笔记(5):使用sprintf函数实现在窗口连续显示同一文件夹下的图片

时间:2015-04-06 14:18:12      阅读:262      评论:0      收藏:0      [点我收藏+]

一、环境:

vs2010 + opencv2.3.1

二、程序:

#include <iostream>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>

using namespace cv;
using namespace std;

int main()
{
	Mat colorImage;
	//Mat depthImage;
	///////////////////////////////////////////////////////////////////
	///由于需要调用sprintf函数,定义colorImageSrc时必须使用数组的形式
	///////////////////////////////////////////////////////////////////
	//char *colorImageSrc = "I:\\The Graduation Design\\Material\\DepthImage\\rgb\\seq0_0000_1.ppm";
	char colorImageSrc[100]  = "I:\\The Graduation Design\\Material\\DepthImage\\rgb\\seq0_0000_1.ppm";

	//char *depthImageSrc;
	int i = 1;
	//int j = 0;
	//char *dest = "I:\\The Graduation Design\\Material\\DepthImage\\rgb\\seq0_0000_1.ppm";
	char *dest = "I:\\The Graduation Design\\Material\\DepthImage\\rgb\\seq0_%04d_1.ppm";
	
	while(colorImageSrc)//直到显示完所有图片
	{	
		colorImage = imread(colorImageSrc,1);
		if(!colorImage.data)
		{
			cout<<"error"<<endl;
			return -1;
		}
		imshow("colorImage",colorImage);
		/////////////////////////////////////////////
		///使用sprintf函数
		/////////////////////////////////////////////
	    sprintf(colorImageSrc,dest,i);
		cout<<colorImageSrc<<endl;
		i++;
		//此处需要waiKey()
		waitKey(1);
	}

	return 0;
}

三、结果:

技术分享


四、重点——sprintf()函数

     该函数原型

int sprintf( char *buffer, const char *format, [ argument] … );
参数列表
bufferchar型指针,指向将要写入的字符串的缓冲区,必须指明该字符串大小
format:格式化字符串。
[argument]...:可选参数,可以是任何类型的数据。
返回值:字符串长度(strlen
有关该函数的其他说明,本篇文章不作介绍,大家可以百度百科或者查阅其他blog。

openCV学习笔记(5):使用sprintf函数实现在窗口连续显示同一文件夹下的图片

原文:http://blog.csdn.net/chentravelling/article/details/44901223

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!