When I use the labelImg (https://github.com/tzutalin/labelImg) to draw bounding boxes around my objects to output the annotation.xml file, it gives the coordinates of the bounding box. I use these annotations to feed into object detection model (ssd_mobilenet_v1_coco & faster_rcnn_resnet101_coco) in tensorflow. The output of the predictions (xmin, ymin, xmax, ymax) are from 0 - 1.
Are the inputs in my annotation.xml normalized to 0 - 1? I want to know this as I would like to obtain IOU by inputting the ground truth and predicted bounding box into my own IOU function. thank you