我一直在尝试使用YAML :: Emitter输出yaml文件。例如,我需要这样的东西作为我的yaml文件。
annotations:
- run:
type: range based
attributes:
start_frame:
frame_number: 25
end_frame:
frame_number: 39
到目前为止,使用我的代码
for (auto element : obj)
{
basenode = YAML::LoadFile(filePath); //loading a file throws exception when it is not a valid yaml file
//Check if metadata is already there
if (!basenode["file_reference"])
{
writeMetaData(element.getGttStream(), element.getTotalFrames(), element.getFileHash());
}
annotationNode["annotations"].push_back(element.getGestureName());
annotationNode["type"] = "range based";
output << annotationNode;
attributesNode["attributes"]["start_frame"]["frame_number"] = element.getStartFrame();
attributesNode["attributes"]["end_frame"]["frame_number"] = element.getEndFrame();
output << typeNode;
output << attributesNode;
ofs.open(filePath, std::ios_base::app);
ofs << std::endl << output.c_str();
}
我正在获得这样的输出
annotations:
- run
type: range based
---
attributes:
start_frame:
frame_number: 26
end_frame:
frame_number: 57
我希望最近推送的序列项下的“类型”和“属性”进入“注释”,然后对所有后续节点都相同。
我甚至尝试过使用类似的东西
annotationNode [0] [type] =“基于范围”
,输出就像这样
0:输入:“基于范围”
如何在序列“注释”中获取最近推送的项目?
答案 0 :(得分:1)
如果您正在构建根节点annotationNode
,那么只需构建它并输出一次。您不需要将typeNode
或attributesNode
写入发射器。例如,您可以编写
YAML::Node annotationNode;
for (auto element : obj) {
YAML::Node annotations;
annotations["name"] = element.getGestureName();
annotations["type"] = ...;
annotations["attributes"] = ...;
annotationNode["annotations"] = annotations;
}
output << annotationNode;