Bounding Boxes in YOLO format

Is it possible to get the 2D bounding boxes in YOLO format directly, meaning normalized [x_center, y_center, width, height]? Or do I have to do the transformation myself?

Isaac Sim does not output boxes in YOLO format. You have to either postprocess the boxes or implement a writer that does that for you, as explained here.

Thanks for the reply. I implemented the postprocessing method.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.