繁体   English   中英

xml中的注释转换为json?

[英]Annotations in xml convert to json?

我使用MASK RCNN keras 和 tensorflow,我想知道是否有人能够使用 xml 注释文件进行训练,或者是否有人将 xml 转换为 json。 如果我将 xml 文件更改为 json,有人可以向我展示如何使用 load_() 函数的示例吗?

我用 VIA 工具做了一些注释,这是正确的(训练和检测),但我真的很想使用 xml 注释,因为已经完成并且需要很长时间才能重新开始。

我已将我的 xml 文件转换为 json,但我的注释中没有多边形或区域,我该如何使用它? 谢谢你。

我会很感激。

annotations1 = json.load(open(os.path.join(dataset_dir, "dataset.json")))

        annotations = list(annotations1.values())  # don't need the dict keys

        annotations = [a for a in annotations if a['images']]

        for a in annotations:

            polygons = [r['shape_attributes'] for r in a['regions'].values()]

            image_path = os.path.join(dataset_dir, a['filename'])
            image = skimage.io.imread(image_path)
            height, width = image.shape[:2]

            self.add_image(
                "damage",  
                image_id=a['filename'],  
                path=image_path,
                width=width, height=height,
                polygons=polygons)

您需要创建自己的脚本以将 XML 转换为 JSON,或者干脆删除load_mask()函数。

我真的需要涵盖VCO到COCO格式(xml2json)。 你能帮我么? 我使用了脚本,但它不是正确的json格式

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM