mmtracking icon indicating copy to clipboard operation
mmtracking copied to clipboard

OpenMMLab Video Perception Toolbox. It supports Video Object Detection (VID), Multiple Object Tracking (MOT), Single Object Tracking (SOT), Video Instance Segmentation (VIS) with a unified framework.

Results 222 mmtracking issues
Sort by recently updated
recently updated
newest added

I get this warning (**Warning: The model doesn't have classes**) for every tracktor and deepsort model, when I run the following: `python demo/demo_mot_vis.py configs/mot/deepsort/sort_faster-rcnn_fpn_4e_mot17-public-half.py --input demo/demo.mp4 --output mot.mp4 --show --backend...

**I think it should be:** grid[:, 0] = grid[:, 0] / (W-1) * 2 - 1 grid[:, 1] = grid[:, 1] / (H-1) * 2 - 1 **demo test:** import...

I use the following command: ``` python demo/demo_mot_vis.py \ configs/mot/bytetrack/bytetrack_yolox_x_crowdhuman_mot17-private-half.py \ --input demo/demo.mp4 \ --output mot.mp4 \ ``` And the output video 'mot.mp4' is as follows ![image](https://user-images.githubusercontent.com/49092533/156302523-b1f7c3a6-b515-45c5-8d27-6fbbd51d6b6a.png) How can I...

### **1、An error occurred when I ran the following test command** python tools/test.py work_dirs/3.8/masktrack_rcnn_r50_fpn_12e_youtubevis2021.py --checkpoint work_dirs/3.8/latest.pth --out work_dirs/3.9/3.9_test.pkl --eval track_segm ### **Error:** load checkpoint from local path: work_dirs/3.8/latest.pth [>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>] 13195/13195,...

**Checklist** 1. I have searched related issues but cannot get the expected help. 2. The bug has not been fixed in the latest version. **Describe the bug** ImportWarning: can't resolve...

the environment is OK, but when I try to run `python demo/demo_mot_vis.py` error comes ![image](https://user-images.githubusercontent.com/43898397/156866201-da0fbc64-8ccd-4fc7-8603-9438afd3333e.png) but if I copy demo/demo_mot_vis.py to upper level directory an run `python demo_mot_vis.py` it works,...

### Issue https://github.com/open-mmlab/mmtracking/blob/3c45b9019c83801c65c40959e65f2ed5c7b97e53/tools/analysis/mot/mot_param_search.py#L144-L149 The `dict.copy()` method is not applied to its children recursively. The values from the sub-dict are not correctly copied. A minimal code snippet to reproduce ```python from...