mmtracking
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.
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...
When I try to train ILSVRC2015 dataset using FGFA for vid task, after modifying workflow=[('train', 1)] to workflow=[('train', 1), ('val', 1)] in config , will produce this error, I made...
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  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  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...