mmtracking
mmtracking copied to clipboard
ref_gt_bboxes_ignore
The dataset has an ignore area (usually more than one image), how do we load it so that it ignores this area during training
Hi, what task do you work on?
Thank you for your answer,I want to work on VID task.
Hi, you can refer to this code: https://github.com/open-mmlab/mmtracking/blob/be8a7afbd719b7846a76caca74dd7f331036cdc3/mmtrack/datasets/coco_video_dataset.py#L327-L328
That is, you can set the iscrowd as True for those bboxes in ignore regions.
oh, thank you , I see.