C++版本 yml 文件的读取 based on OpenCV 2.1

#include "cv.h"
#include "highgui.h"
#include "iostream"
 
using namespace cv; //下面的所有cv相关类型不用加上前缀了
 
int main(int argc, char* argv[])
{
FileStorage fs("test.yml", FileStorage::WRITE); //写的形式打开yml。当然也可以打开xml,主要看后缀
 
fs << "i" << 5 << "r" << 3.1 << "str" << "ABCDEFGH"; //存入整型、浮点型、字符串
 
Mat writeInImg = imread( "lena.jpg" ); //载入Lena妞的图片载入
imshow( "Lena_from_jpg", writeInImg ); //看一看Lena妞是否健在
fs << "lena" << writeInImg; //将Lena妞的图片矩阵插入test.yml
 
fs.release();
 
FileStorage readfs("test.yml", FileStorage::READ); //读的形式打开yml。当然也可以打开xml,主要看后缀
 
if( imgRecall.isOpened() )
{
int i1 = (int)readfs["i"];
double r1 = (double)readfs["r"];
string str1 = (string)readfs["str"];
 
Mat readOutImg;
readfs["lena"] >> readOutImg; //把Lena从yml中取出
imshow( "Lena_from_yml", readOutImg ); //看看是不是跟之前放进去的是同一个人
 
cout<<"read out i:"<<i1<<endl<<"read out r:"<<r1<<endl<<"read out str:"<<str1<<endl;
}
readfs.release();
 
waitKey();
 
return 0;
 
}

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值