Jump to content

Maryam

Members
  • Content Count

    1
  • Joined

  • Last visited

Everything posted by Maryam

  1. Hi, I am new to this platform and here to seek help regarding image annotation formats for object detection API. Foreknow: As, we know there are two annotation formats for images, Pascal VOC and COCO formats. Both have their own specification here's the main difference between both: Pascal VOC: Stores annotation in .xml file format. Bounding box format [x-top-left, y-top-left, x-bottom-right, y-bottom-right] Create separate xml annotation file for each image in the dataset. COCO: Stores annotation in .json file format. Bounding box format [x-top-left, y-top-left, width, height]. Create one annotation file for each training, testing and validation. Current-issue: I have two dataset to deal and this is how they are annotated. Dataset-1: File format: Pascal VOC(.xml) Bounding box format: COCO. File creation: As in Pascal VOC(separate xml annotation file for each image in the dataset). Dataset-2: File format: Pascal VOC(.xml) Bounding box format: COCO. File creation: As in COCO(Create one annotation file for each training, testing and validation) The thing that I am not able to get pass through is which format(Pascal VOC or COCO) should I follow to convert my annotations into Tfrecords(.xml to .records) as use can see the annotations of dataset aren't purely belong to any of one format. For instance, in the link below author wrote a script to convert .xml into .records but here it is dealing with pure pascal VOC format. https://github.com/sglvladi/TensorFlowObjectDetectionTutorial/blob/master/docs/source/scripts/generate_tfrecord.py And in this link they are dealing with pure COCO annotation formats. https://github.com/tensorflow/models/blob/master/research/object_detection/dataset_tools/create_coco_tf_record.py Which path should I follow as I am standing in the middle of both formats?
×