Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经使用 vott 注释了我的数据,默认格式是 json。我想将我的数据加载到detectron2模型,但似乎所需的格式是coco。谁能告诉我如何将我的数据从 json vott 转换为 coco 格式?
我和我的同学创建了一个名为PyLabel的 python 包来帮助其他人完成此类任务和其他标记任务。您可以在此笔记本中看到一个示例:https ://github.com/pylabel-project/samples/blob/main/coco2voc.ipynb 。
您也许可以使用包的导入器工具来导入您的数据并将其转换为 coco。
你可以在这里找到包的代码:https ://github.com/pylabel-project/ 。