我可以在不知道节点名称的情况下解析 OpenCV 中的 YAML 文件(使用 FileStorage 库)吗?
例如,下一个 YAML 文件:
%YAML:1.0
descriptors1: !!opencv-matrix
rows: 82
cols: 64
dt: f
data: [ ... ]
descriptors2: !!opencv-matrix
rows: 161
cols: 64
dt: f
data: [ ... ]
并逐个节点解析(OpenCV Matrix by OpenCV Matrix),无需执行:
FileStorage fs;
...
Mat firstMatrix;
Mat secondMatrix;
fs["descriptors1"] >> firstMatrix;
fs["descriptors2"] >> secondMatrix;