corfyi / UCMCTrack

[AAAI 2024] UCMCTrack: Multi-Object Tracking with Uniform Camera Motion Compensation. UCMCTrack achieves SOTA on MOT17 using estimated camera parameters.
https://ojs.aaai.org/index.php/AAAI/article/download/28493/28960
MIT License
263 stars 25 forks source link

关于像平面坐标(u,v) #31

Open Zhao-Guo-CHEN opened 3 months ago

Zhao-Guo-CHEN commented 3 months ago

65dfe6c94b7a37c7f2c7cc2f024a32d6 您好,我在论文中看到uv的描述的边界框的底面中心坐标,但是代码中好像有点不一样,想询问一下uv是怎么设置的

Paulkie99 commented 3 months ago

Hi, the bounding box is formatted as follows: top left x, top left y, width, height. Therefore, box[0] + box[2] / 2 will equal the center x coordinate, and box[1] + box[3] will equal the bottom y coordinate.