wangyuxin87 / ContourNet

A PyTorch implementation of "ContourNet: Taking a Further Step toward Accurate Arbitrary-shaped Scene Text Detection" (CVPR2020)
Other
227 stars 46 forks source link

coco格式的标注文件中的keypoints字段 #9

Closed dedety2 closed 4 years ago

dedety2 commented 4 years ago

请问一下keypoints字段是否必要,在从原始标注文件(如icdar15)转到coco格式时,应该如何得到,希望得到一点指导。谢谢大佬。

wangyuxin87 commented 4 years ago

‘segmentation’ 和 'bbox'为必要字段,我们给出了从txt向coco格式转换的代码Link

dedety2 commented 4 years ago

‘segmentation’ 和 'bbox'为必要字段,我们给出了从txt向coco格式转换的代码Link

明白了,谢谢大佬