Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

FileStorage for OpenCV Python API

Tags:

I'm currently using FileStorage class for storing matrices XML/YAML using OpenCV C++ API.

However, I have to write a Python Script that reads those XML/YAML files.

I'm looking for existing OpenCV Python API that can read the XML/YAML files generated by OpenCV C++ API

like image 973
garak Avatar asked Jun 21 '12 15:06

garak


1 Answers

You can use PyYAML to parse the YAML file.

Since PyYAML doesn't understand OpenCV data types, you need to specify a constructor for each OpenCV data type that you are trying to load. For example:

import yaml
def opencv_matrix(loader, node):
    mapping = loader.construct_mapping(node, deep=True)
    mat = np.array(mapping["data"])
    mat.resize(mapping["rows"], mapping["cols"])
    return mat
yaml.add_constructor(u"tag:yaml.org,2002:opencv-matrix", opencv_matrix)

Once you've done that, loading the yaml file is simple:

with open(file_name) as fin:
    result = yaml.load(fin.read())

Result will be a dict, where the keys are the names of whatever you saved in the YAML.

like image 115
mpenkov Avatar answered Oct 18 '22 11:10

mpenkov