UCMCTrack icon indicating copy to clipboard operation
UCMCTrack copied to clipboard

[AAAI 2024] UCMCTrack: Multi-Object Tracking with Uniform Camera Motion Compensation. UCMCTrack achieves SOTA on MOT17 using estimated camera parameters.

Results 14 UCMCTrack issues
Sort by recently updated
recently updated
newest added

Hello! Thanks for sharing the code. I am currently trying to apply ucmctrack to visdrone. I have a question. What is the criteria for determining the parameters mentioned in the...

Congradulation for such an achievement! The paper defines the covariance matrix for measurement error is $$ \mathbf{R}_k^{uv}=\begin{bmatrix}(\sigma_mw_k)^2&0 \\ 0&(\sigma_mh_k)^2 \end{bmatrix} $$ but in the code getUVError, it is ``` def...

Hi Corfyi, many thanks for releasing this impressive work. I have a confusion regarding the construction of the measurement noise covariance matrix R_k in the CMD (Correlated Measurement Distribution) section....

Hi, Is there any chance to publish the code for training on a custom dataset? Thanks.

请问检测结果是哪里来的?./det_results/mot17/yolox_x_ablation/MOT17-02-SDP.txt 是怎么获得的。是不是跟ByteTrack的结果不一样呀?

Hi and congratulations on your great work! In the demo.py script, The "use_cmc" flag for the UCMCTrack is set to False. Is this on purpose? Is this the best configuration?...

Hello Kefu, Thank you for your excellent paper, and this open source project. I really want to try it on my YOLOv8-OBB. However, with built-in tracker of the YOLO model,...

`dets = detector.get_dets(frame_img,args.conf_thresh,class_list) print("Before", dets) tracker.update(dets,frame_id) print("After", dets)` I found that the dets before and after tracker.update are actually same. Is it really updated?

![65dfe6c94b7a37c7f2c7cc2f024a32d6](https://github.com/corfyi/UCMCTrack/assets/150516956/74d3127b-b67e-40e5-a552-b3b3607ec6c3) 您好,我在论文中看到uv的描述的边界框的底面中心坐标,但是代码中好像有点不一样,想询问一下uv是怎么设置的