thanks in advance.
I try to use tensorflow object detection api with manual and web.
But I confused about bounding box format in tensorflow object detection api.
in tutorial, TODA(tensorflow object detection api) serve several pretrained model,
and its trained with coco dataset.
in coco dataset,
bbox foramt is [xmin, ymin, width, height],
there are many bbox format,
centerx, centery, width, height, or xmin, ymin, xmax,ymax
which bbox format should I use for TODA??
(should I use coco format??)
I cant find any info regarding this.
and x axis and y axis, this is also confused. I understand X means width, Y means height.
bun TODA code,
I found this.
def assert_or_prune_invalid_boxes(boxes):
...
ymin, xmin, ymax, xmax = tf.split(
boxes, num_or_size_splits=4, axis=1)
why x, y switching??
TODA axis is different from others??
thanks.