How can i get the coordinates of the produced bounding boxes using the inference script of Google\'s Object Detection API? I know that printing boxes[0][i] returns the predi
The boxes array that you mention contains this information and the format is a [N, 4] array where each row is of the format:
[ymin, xmin, ymax, xmax] in normalized coordinates relative to the size of the input image.