Improving Opencv 8: The Core Functionality :File Input and Output using XML and YAML files

本文详细介绍如何使用OpenCV进行数据序列化,包括文本、数值、OpenCV数据结构及自定义数据结构的读写操作。通过C++和Python示例,讲解如何利用cv::FileStorage进行XML/YAML文件的打开、关闭及数据的输入输出。

目录

Goal

Explanation

XML/YAML File Open and Close.

Input and Output of text and numbers.

Input/Output of OpenCV Data structures. 

Read and write your own data structures

Python

C++


 

Goal

You'll find answers for the following questions:

  • How to print and read text entries to a file and OpenCV using YAML or XML files?
  • How to do the same for OpenCV data structures?
  • How to do this for your data structures?
  • Usage of OpenCV data structures such as cv::FileStorage , cv::FileNode or cv::FileNodeIterator .

Explanation

XML/YAML File Open and Close.

 Before you write any content to such file you need to open it and at the end to close it. The XML/YAML data structure in OpenCV is cv::FileStorage . 

Input and Output of text and numbers.

In C++, the data structure uses the << output operator in the STL library. In Python, cv::FileStorage::write() is used instead. For outputting any type of data structure we need first to specify its name. We do this by just simply pushing the name of this to the stream in C++. In Python, the first parameter for the write function is the name. For basic types you may follow this with the print of the value :

  fs << "iterationNr" << 100;



s.write('iterationNr', 100)

Reading in is a simple addressing (via the [] operator) and casting operation or a read via the >> operator. In Python, we address with getNode() and use real() :

        int itNr;
        //fs["iterationNr"] >> itNr;
        itNr = (int) fs["iterationNr"];

Input/Output of OpenCV Data structures. 

Well these behave exactly just as the basic C++ and Python types:

 Mat R = Mat_<uchar>::eye(3, 3),
            T = Mat_<double>::zeros(3, 1);
        fs << "R" << R;                                      // cv::Mat
        fs << "T" << T;
        fs["R"] >> R;                                      // Read cv::Mat
        fs["T"] >> T;




R = np.eye(3,3)
    T = np.zeros((3,1))
    s.write ('R_MAT', R)
    s.write ('T_MAT', T)
    R = s.getNode('R_MAT').mat()
    T = s.getNode('T_MAT').mat()

Read and write your own data structures

 

class MyData
{
public:
      MyData() : A(0), X(0), id() {}
public:   // Data Members
   int A;
   double X;
   string id;
};

 void write(FileStorage& fs) const                        //Write serialization for this class
    {
        fs << "{" << "A" << A << "X" << X << "id" << id << "}";
    }
    void read(const FileNode& node)                          //Read serialization for this class
    {
        A = (int)node["A"];
        X = (double)node["X"];
        id = (string)node["id"];
    }

//In C++, you need to add the following functions definitions outside the class:

static void write(FileStorage& fs, const std::string&, const MyData& x)
{
    x.write(fs);
}
static void read(const FileNode& node, MyData& x, const MyData& default_value = MyData()){
    if(node.empty())
        x = default_value;
    else
        x.read(node);
}



class MyData:
    def __init__(self):
        self.A = self.X = 0
        self.name = '

    def write(self, fs):
        fs.write('MyData','{')
        fs.write('A', self.A)
        fs.write('X', self.X)
        fs.write('name', self.name)
        fs.write('MyData','}')
    def read(self, node):
        if (not node.empty()):
            self.A = int(node.getNode('A').real())
            self.X = node.getNode('X').real()
            self.name = node.getNode('name').string()
        else:
            self.A = self.X = 0
            self.name = ''

Once you added these four functions use the >> operator for write and the << operator for read (or the defined input/output functions for Python):

  MyData m(1);
        fs << "MyData" << m;                                // your own data structures
        fs["MyData"] >> m;                                 // Read your own structure_
//Or to try out reading a non-existing read:

        cout << "Attempt to read NonExisting (should initialize the data structure with its default).";
        fs["NonExisting"] >> m;
        cout << endl << "NonExisting = " << endl << m << endl;

 

 m = MyData()
    m.write(s)
    m.read(s.getNode('MyData'))
Or to try out reading a non-existing read:

    print ('Attempt to read NonExisting (should initialize the data structure',
            'with its default).')
    m.read(s.getNode('NonExisting'))
    print ('\nNonExisting =','\n',m)

Python

from __future__ import print_function

import numpy as np
import cv2 as cv
import sys

def help(filename):
    print (
        '''
        {0} shows the usage of the OpenCV serialization functionality. \n\n
        usage:\n
            python3 {0} outputfile.yml.gz\n\n
        The output file may be either in XML, YAML or JSON. You can even compress it\n
        by specifying this in its extension like xml.gz yaml.gz etc... With\n
        FileStorage you can serialize objects in OpenCV.\n\n
        For example: - create a class and have it serialized\n
                     - use it to read and write matrices.\n
        '''.format(filename)
    )



def main(argv):
    if len(argv) != 2:
        help(argv[0])
        exit(1)

    # write
    ## [iomati]
    R = np.eye(3,3)
    T = np.zeros((3,1))
    intNum = np.random.randint(0, 100, 6)


    filename = argv[1]

    ## [open]
    s = cv.FileStorage(filename, cv.FileStorage_WRITE)
    # or:
    # s = cv.FileStorage()
    # s.open(filename, cv.FileStorage_WRITE)
    ## [open]

    ## [writeNum]
    s.write('iterationNr', 100)
    ## [writeNum]



    ## [iomatw]
    s.write('R_MAT', R)
    s.write('T_MAT', T)
    s.write("intnum", intNum)
    ## [iomatw]


    s.release()
    ## [close]
    print ('Write Done.')

    # read
    print ('\nReading: ')
    s = cv.FileStorage()
    s.open(filename, cv.FileStorage_READ)

    ## [readNum]
    n = s.getNode('iterationNr')
    itNr = int(n.real())
    ## [readNum]
    print (itNr)

    R = s.getNode("R_MAT").mat()
    print('R=', R)

    num = s.getNode("intnum").mat()
    print('intnum = ', num)
    print(num.shape)



    if (not s.isOpened()):
        print ('Failed to open ', filename, file=sys.stderr)
        help(argv[0])
        exit(1)

    ## [readStr]
    n = s.getNode('strings')
    if (not n.isSeq()):
        print ('strings is not a sequence! FAIL', file=sys.stderr)
        exit(1)




if __name__ == '__main__':
    main(sys.argv)

按快捷键:alt+shift+F10调出运行窗口,之后选择Edit Configurations或者按0

Run/Debug Configurations->Configurations->Parameters

RWxml.xml

<?xml version="1.0"?>
<opencv_storage>
<iterationNr>100</iterationNr>
<R_MAT type_id="opencv-matrix">
  <rows>3</rows>
  <cols>3</cols>
  <dt>d</dt>
  <data>
    1. 0. 0. 0. 1. 0. 0. 0. 1.</data></R_MAT>
<T_MAT type_id="opencv-matrix">
  <rows>3</rows>
  <cols>1</cols>
  <dt>d</dt>
  <data>
    0. 0. 0.</data></T_MAT>
<intnum type_id="opencv-matrix">
  <rows>6</rows>
  <cols>1</cols>
  <dt>i</dt>
  <data>
    5 73 58 52 91 43</data></intnum>
</opencv_storage>

结果

F:\Anaconda\envs\PythonBuffer\python.exe F:/PythonBuffer/first.py RWxml.xml
Write Done.
strings is not a sequence! FAIL

Reading: 
100
R= [[1. 0. 0.]
 [0. 1. 0.]
 [0. 0. 1.]]
intnum =  [[ 5]
 [73]
 [58]
 [52]
 [91]
 [43]]
(6, 1)

Process finished with exit code 1

C++

#include <opencv2/core/core.hpp>
#include <iostream>
#include <string>

using namespace cv;
using namespace std;

static void help(char** av)
{
	cout << endl
		<< av[0] << " shows the usage of the OpenCV serialization functionality." << endl
		<< "usage: " << endl
		<< av[0] << " outputfile.yml.gz" << endl
		<< "The output file may be either XML (xml) or YAML (yml/yaml). You can even compress it by "
		<< "specifying this in its extension like xml.gz yaml.gz etc... " << endl
		<< "With FileStorage you can serialize objects in OpenCV by using the << and >> operators" << endl
		<< "For example: - create a class and have it serialized" << endl
		<< "             - use it to read and write matrices." << endl;
}

class MyData
{
public:
	MyData() : A(0), X(0), id()
	{}
	explicit MyData(int) : A(97), X(CV_PI), id("mydata1234") // explicit to avoid implicit conversion
	{}
	//! [inside]
	void write(FileStorage& fs) const                        //Write serialization for this class
	{
		fs << "{" << "A" << A << "X" << X << "id" << id << "}";
	}
	void read(const FileNode& node)                          //Read serialization for this class
	{
		A = (int)node["A"];
		X = (double)node["X"];
		id = (string)node["id"];
	}
	//! [inside]
public:   // Data Members
	int A;
	double X;
	string id;
};

//These write and read functions must be defined for the serialization in FileStorage to work
//! [outside]
static void write(FileStorage& fs, const std::string&, const MyData& x)
{
	x.write(fs);
}
static void read(const FileNode& node, MyData& x, const MyData& default_value = MyData()){
	if (node.empty())
		x = default_value;
	else
		x.read(node);
}
//! [outside]

// This function will print our custom class to the console
static ostream& operator<<(ostream& out, const MyData& m)
{
	out << "{ id = " << m.id << ", ";
	out << "X = " << m.X << ", ";
	out << "A = " << m.A << "}";
	return out;
}

int main(int ac, char** av)
{
	//if (ac != 2)
	//{
	//	help(av);
	//	return 1;
	//}

	//string filename = av[1];
	string filename = "xmlFile.xml";
	{ //write
		//! [iomati]
		Mat R = Mat_<uchar>::eye(3, 3),
			T = Mat_<double>::zeros(3, 1);
		//! [iomati]
		//! [customIOi]
		MyData m(1);
		//! [customIOi]

		//! [open]
		FileStorage fs(filename, FileStorage::WRITE);
		// or:
		// FileStorage fs;
		// fs.open(filename, FileStorage::WRITE);
		//! [open]

		//! [writeNum]
		fs << "iterationNr" << 100;
		//! [writeNum]
		//! [writeStr]
		fs << "strings" << "[";                              // text - string sequence
		fs << "image1.jpg" << "Awesomeness" << "../data/baboon.jpg";
		fs << "]";                                           // close sequence
		//! [writeStr]

		fs << "poem" << "[";
		fs << "丙辰中秋,欢饮达旦,大醉,作此篇,兼怀子由。" << \
			"明月几时有?把酒问青天。不知天上宫阙,今夕是何年。" << \
			"我欲乘风归去,又恐琼楼玉宇,高处不胜寒。" << \
			"起舞弄清影,何似在人间。转朱阁,低绮户,照无眠。" << \
			"不应有恨,何事长向别时圆 ?" << \
			"人有悲欢离合,月有阴晴圆缺,此事古难全。但愿人长久,千里共婵娟。";
		fs << "]";



		//! [writeMap]
		fs << "Mapping";                              // text - mapping
		fs << "{" << "One" << 1;
		fs << "Two" << 2 << "}";
		//! [writeMap]

		//! [iomatw]
		fs << "R" << R;                                      // cv::Mat
		fs << "T" << T;
		//! [iomatw]

		//! [customIOw]
		fs << "MyData" << m;                                // your own data structures
		//! [customIOw]

		//! [close]
		fs.release();                                       // explicit close
		//! [close]
		cout << "Write Done." << endl;
	}

	{//read
		cout << endl << "Reading: " << endl;
		FileStorage fs;
		fs.open(filename, FileStorage::READ);

		//! [readNum]
		int itNr;
		//fs["iterationNr"] >> itNr;
		itNr = (int)fs["iterationNr"];
		//! [readNum]
		cout << itNr << endl;
		if (!fs.isOpened())
		{
			cerr << "Failed to open " << filename << endl;
			help(av);
			return 1;
		}

		////! [readStr]
		//FileNode n = fs["strings"];                         // Read string sequence - Get node
		//if (n.type() != FileNode::SEQ)
		//{
		//	cerr << "strings is not a sequence! FAIL" << endl;
		//	return 1;
		//}

		//FileNodeIterator it = n.begin(), it_end = n.end(); // Go through the node
		//for (; it != it_end; ++it)
		//	cout << (string)*it << endl;
		////! [readStr]

		//! [readStr]
		FileNode poem = fs["poem"];                         // Read string sequence - Get node
		if (poem.type() != FileNode::SEQ)
		{
			cerr << "strings is not a sequence! FAIL" << endl;
			return 1;
		}

		FileNodeIterator it = poem.begin(), it_end = poem.end(); // Go through the node
		for (; it != it_end; ++it)
			cout << (string)*it << endl;
		//! [readStr]


		//! [readMap]
		//n = fs["Mapping"];                                // Read mappings from a sequence
		//cout << "Two  " << (int)(n["Two"]) << "; ";
		//cout << "One  " << (int)(n["One"]) << endl << endl;
		//! [readMap]


		MyData m;
		Mat R, T;

		//! [iomat]
		fs["R"] >> R;                                      // Read cv::Mat
		fs["T"] >> T;
		//! [iomat]
		//! [customIO]
		fs["MyData"] >> m;                                 // Read your own structure_
		//! [customIO]

		cout << endl
			<< "R = " << R << endl;
		cout << "T = " << T << endl << endl;
		cout << "MyData = " << endl << m << endl << endl;

		//Show default behavior for non existing nodes
		//! [nonexist]
		cout << "Attempt to read NonExisting (should initialize the data structure with its default).";
		fs["NonExisting"] >> m;
		cout << endl << "NonExisting = " << endl << m << endl;
		//! [nonexist]
	}

	cout << endl
		<< "Tip: Open up " << filename << " with a text editor to see the serialized data." << endl;

	return 0;
}

xmlFile.xml

<?xml version="1.0"?>
<opencv_storage>
<iterationNr>100</iterationNr>
<strings>
  image1.jpg Awesomeness "../data/baboon.jpg"</strings>
<poem>
  "丙辰中秋,欢饮达旦,大醉,作此篇,兼怀子由。"
  "明月几时有?把酒问青天。不知天上宫阙,今夕是何年。"
  "我欲乘风归去,又恐琼楼玉宇,高处不胜寒。"
  "起舞弄清影,何似在人间。转朱阁,低绮户,照无眠。"
  "不应有恨,何事长向别时圆 ?"
  "人有悲欢离合,月有阴晴圆缺,此事古难全。但愿人长久,千里共婵娟。"</poem>
<Mapping>
  <One>1</One>
  <Two>2</Two></Mapping>
<R type_id="opencv-matrix">
  <rows>3</rows>
  <cols>3</cols>
  <dt>u</dt>
  <data>
    1 0 0 0 1 0 0 0 1</data></R>
<T type_id="opencv-matrix">
  <rows>3</rows>
  <cols>1</cols>
  <dt>d</dt>
  <data>
    0. 0. 0.</data></T>
<MyData>
  <A>97</A>
  <X>3.1415926535897931e+000</X>
  <id>mydata1234</id></MyData>
</opencv_storage>

 

内容概要:本文档详细介绍了基于直驱永磁同步发电机(PMSG)的1.5MW风力发电系统在Simulink环境下的建模与仿真全过程,涵盖了风力机空气动力学模型、PMSG电磁特性建模、不可控整流与逆变电路、直流环节、空间矢量脉宽调制(SVPWM)技术以及核心控制策略的设计。重点实现了最大功率点跟踪(MPPT)控制以提升风能捕获效率,并构建了电压外环与电流内环协同工作的双闭环控制系统,通过仿真验证了系统在不同风速条件下稳定运行的能力及动态响应性能。; 适合人群:适用于具备电力系统、电机控制理论基础及Simulink仿真操作经验的研究生、科研人员和从事新能源发电系统开发的工程技术人员;特别适合正在进行风电系统建模、控制算法研究或完成相关毕业设计的专业人士。; 使用场景及目标:①深入理解直驱式PMSG风力发电系统的整体架构与工作机理;②掌握从物理部件建模到控制策略实现的完整Simulink仿真流程;③学习并复现MPPT控制、双闭环控制等关键技术方案;④为后续开展低电压穿越、并网稳定性分析、故障诊断等高级课题提供可靠的仿真平台支撑。; 阅读建议:建议结合Matlab/Simulink软件动手实践,逐模块搭建模型,重点关注各控制环节的参数设计与调试方法,同时可参照文中提供的其他风电相关资源进行拓展学习与对比分析。
已经博主授权,源码转载自 https://pan.quark.cn/s/868afdd63918 在信息技术领域中,前端开发构成了Web应用程序构建的关键环节,而登录注册页面则是用户与网站进行互动的起始界面。"150款web登录注册页面模板(附带效果图+源码)"这一资源为前端工程师们提供了一系列预先设计的界面组件,支持他们迅速构建既美观又实用的登录及注册界面,从而有效缩减开发周期并增强工作效率。 这些模板囊括了多样化的风格和设计潮流,涵盖了扁平化设计、Material Design、渐变色彩、暗黑模式等,能够适应不同项目的特定要求。在设计中强调用户体验,通过科学的布局安排,提升了表单的便捷操作性和可辨识度,并且不忽视视觉层面的吸引力。设计师通常会关注自适应设计,保证页面在多种设备(涵盖手机、平板及桌面电脑)上均能呈现良好的视觉效果。 这些模板均配备了源代码,使得开发者得以深入探究并个性化定制每个构成部分,涉及HTML的页面构造、CSS的样式修饰以及JavaScript的交互逻辑。HTML主要承担着页面基础结构的搭建,CSS用于实现页面美化与布局控制,JavaScript则常用于处理表单验证和交互效果。对于那些精通这三种技术的开发者而言,他们可以根据个人需求对模板进行功能扩展和样式调整。 在实际部署时,登录注册页面通常需要集成基础的输入项,例如用户名、密码、电子邮箱等,并且必须重视安全性考量,诸如密码强度指引、验证码系统等。除此之外,为了优化用户体验,还可能集成记住密码、自动填充、社交平台登录(例如微信、QQ、微博)等功能。 在开发阶段,前端工程师还需关注Web标准和无障碍访问(WCAG)规范,确保页面的通用友好性,这包括视障、听障或其他有特殊需求的用户群体。具体措施涉及标...
源码直接下载地址: https://pan.quark.cn/s/9af8b9f95652 ### Multisim模型的导入和使用 ### 一、引言 随着电子设计自动化(EDA)工具的进步,Multisim已经成为电子工程师进行电路仿真、分析和设计的关键工具之一。借助Multisim,工程师们能够便捷地构建电路模型,并对电路进行仿真验证。本文将系统阐述如何在Multisim中导入并运用芯片仿真模型,这对于提升电子产品的研发效能具有显著价值。 ### 二、Multisim中构建新元器件 构建新元器件是Multisim中的核心功能,特别是对于那些需要特定模型或无法从Multisim库中直接获取的元器件来说更为关键。以下为构建新元器件的具体流程: ##### 步骤1:录入元器件信息 在Multisim中启动“Component Wizard”,即元器件向导,开始创建新的元器件。首先需要录入元器件的基本资料,包括型号、主要功能、类型等。这些资料将有助于用户更高效地管理和检索元器件。 ##### 步骤2:录入封装信息 接下来需要设定元器件的封装信息。在这一环节中,用户需要依据实际芯片的封装规格来选择适宜的引脚数量。同时,还需明确是构建单一部件元器件还是复合部件元器件。如果是复合部件元器件,则必须确保引脚数量与符号中使用的引脚数量保持一致。 ##### 步骤3:录入符号信息 在此步骤中,用户可以编辑元器件在仿真过程中的显示符号。编辑符号可以通过三种途径进行:直接编辑、从数据库中复制现有符号或复制当前符号以备将来使用。编辑符号时应注重其在电路图中的可辨识度和清晰度。 ##### 步骤4:设定管脚参数 在该步骤中,用户需要参照数据手册上的管脚顺序为每个管脚命名,并选择恰当的类型。...
代码转载自:https://pan.quark.cn/s/7b1a6710052c Vivado 2018.2 与 ModelSim 的协同仿真操作 Vivado 2018.2 是由 Xilinx 公司开发的一款用于 FPGA 设计的工具,它包含了丰富的设计和仿真功能。然而,在实际应用过程中,用户可能会遇到其自带的仿真工具运行效率不高的问题。为了提升仿真效率并简化设计验证流程,可以考虑采用第三方仿真工具 ModelSim。ModelSim 是一款性能卓越且市场应用广泛的仿真软件,接下来的内容将详细阐述如何实现 Vivado 2018.2 与 ModelSim 的联合使用。 配置 ModelSim 的安装路径 在使用 Vivado 2018.2 时,首先需要配置 ModelSim 的安装位置。用户可以通过点击 Vivado 菜单中的“Tools”——>“Settings...”选项,然后在弹出的设置界面中,选择“Tool Settings”下的“3rd Party Simulators”选项卡。在“Install Paths”区域,找到“ModelSim”条目,并在此输入或选择 ModelSim 的具体安装路径。 执行器件库编译操作 在 ModelSim 的安装目录下,创建一个名为 xilinx_lib 的子文件夹。随后,在 Vivado 菜单中通过“Tools”——>“Compile Simulation Libraries...”选项启动器件库编译流程,并设定相应的编译参数。在打开的对话框里,将仿真工具选择为“ModelSim Simulator”,保持语言和库的默认设置不变,同时指定编译器件库的存放位置和 ModelSim 可执行文件的路径。 ...
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值