opencv 创建和读取xml文件以及matlab生成xml

前端之家收集整理的这篇文章主要介绍了opencv 创建和读取xml文件以及matlab生成xml前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

一、创建.xml文件

#include <iostream>

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

using namespace std;
void main(){

	double a[9]={2.526,2,3,4,5,6,1,2};

CvMat *testmat=cvCreateMat(3,CV_64FC1);

cvInitMatHeader(testmat,CV_64FC1,a);

cvSave("my.xml",testmat);
}
二、读取xml文件main函数部分
	CvMat* testmat=(CvMat*)cvLoad("test.xml");

	for (int i=0;i<3;i++)

	{

		for (int j=0;j<3;j++)

		{

		cout<<cvGetReal2D(testmat,i,j)<<" ";

		}

		cout<<endl;

	}

三、matlab中生成xml(参考其他博客,亲测可用)
function [  ] = createxml( name,datatest )
%CREATEXML 此处显示有关此函数摘要
%   此处显示详细说明
xdoc=com.mathworks.xml.XMLUtils.createDocument('opencv_storage');

xroot=xdoc.getDocumentElement;

%

[m,n]=size(datatest);

type=xdoc.createElement(name);

xroot.appendChild(type);

type.setAttribute('type_id',' opencv-matrix')

%

rows=xdoc.createElement('rows');

rows.appendChild(xdoc.createTextNode(sprintf('%d',m)));

type.appendChild(rows);

cols=xdoc.createElement('cols');

cols.appendChild(xdoc.createTextNode(sprintf('%d',n)));

type.appendChild(cols);

dt=xdoc.createElement('dt');

dt.appendChild(xdoc.createTextNode(sprintf('%s',' f')));

type.appendChild(dt);

data=xdoc.createElement('data');

data.appendChild(xdoc.createTextNode(sprintf('%f ',datatest)));

type.appendChild(data);

str=strcat(name,'.xml');

xmlwrite(str,xdoc);

end

四、matlab中.mat文件在opencv中使用

使用第三部分的将字典B转换成xml文件Dic: createxml('Dic',B);

在第二部分读取

注意:如果不能正常读取可以先用第一部分生成一个,然后参照格式,适当修改

原文链接:https://www.f2er.com/xml/296648.html

猜你在找的XML相关文章