lyuwenyu / RT-DETR

[CVPR 2024] Official RT-DETR (RTDETR paddle pytorch), Real-Time DEtection TRansformer, DETRs Beat YOLOs on Real-time Object Detection. 🔥 🔥 🔥

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

What is the output of bbox format in onnx file ? I want to use it on xavier with tensor rt export

r4hul77 opened this issue · comments

Star RTDETR
请先在RTDETR主页点击star以支持本项目
Star RTDETR to help more people discover this project.


Describe the bug
A clear and concise description of what the bug is.
If applicable, add screenshots to help explain your problem.

To Reproduce
Steps to reproduce the behavior.

Moreover, is there any flag to see output logs on tensorboard ?

  1. [xmin, ymin, xmax, ymax]
  2. Sorry, not yet. But I will add tensorboard in next version.

太感谢了

Btw, when I got the onnx file, it is expecting another input called "orig_target_sizes", what is this ?

Inferenced images will are padded up to the default 640x640 size. "orig_target_sizes" i believe is the sizes ('N', w , h) of the images you used as an input before it got padded by the model. The 'N' dimension must match the number of input images.

ah that makes sense, I appreciate it.