Shortcuts

mmtrack.apis

mmtrack.apis.inference_mot(model, img, frame_id)[source]

Inference image(s) with the mot model.

Parameters
  • model (nn.Module) – The loaded mot model.

  • img (str | ndarray) – Either image name or loaded image.

  • frame_id (int) – frame id.

Returns

ndarray]: The tracking results.

Return type

dict[str

mmtrack.apis.inference_sot(model, image, init_bbox, frame_id)[source]

Inference image with the single object tracker.

Parameters
  • model (nn.Module) – The loaded tracker.

  • image (ndarray) – Loaded images.

  • init_bbox (ndarray) – The target needs to be tracked.

  • frame_id (int) – frame id.

Returns

ndarray]: The tracking results.

Return type

dict[str

mmtrack.apis.inference_vid(model, image, frame_id, ref_img_sampler={'frame_stride': 10, 'num_left_ref_imgs': 10})[source]

Inference image with the video object detector.

Parameters
  • model (nn.Module) – The loaded detector.

  • image (ndarray) – Loaded images.

  • frame_id (int) – Frame id.

  • ref_img_sampler (dict) – The configuration for sampling reference images. Only used under video detector of fgfa style. Defaults to dict(frame_stride=2, num_left_ref_imgs=10).

Returns

ndarray]: The detection results.

Return type

dict[str

mmtrack.apis.init_model(config, checkpoint=None, device='cuda:0', cfg_options=None, verbose_init_params=False)[source]

Initialize a model from config file.

Parameters
  • config (str or mmcv.Config) – Config file path or the config object.

  • checkpoint (str, optional) – Checkpoint path. Default as None.

  • cfg_options (dict, optional) – Options to override some settings in the used config. Default to None.

  • verbose_init_params (bool, optional) – Whether to print the information of initialized parameters to the console. Default to False.

Returns

The constructed detector.

Return type

nn.Module

mmtrack.apis.init_random_seed(seed=None, device='cuda')[source]

Initialize random seed.

If the seed is not set, the seed will be automatically randomized, and then broadcast to all processes to prevent some potential bugs. :param seed: The seed. Default to None. :type seed: int, Optional :param device: The device where the seed will be put on.

Default to ‘cuda’.

Returns

Seed to be used.

Return type

int

mmtrack.apis.multi_gpu_test(model, data_loader, tmpdir=None, gpu_collect=False)[source]

Test model with multiple gpus.

This method tests model with multiple gpus and collects the results under two different modes: gpu and cpu modes. By setting ‘gpu_collect=True’ it encodes results to gpu tensors and use gpu communication for results collection. On cpu mode it saves the results on different gpus to ‘tmpdir’ and collects them by the rank 0 worker. ‘gpu_collect=True’ is not supported for now.

Parameters
  • model (nn.Module) – Model to be tested.

  • data_loader (nn.Dataloader) – Pytorch data loader.

  • tmpdir (str) – Path of directory to save the temporary results from different gpus under cpu mode. Defaults to None.

  • gpu_collect (bool) – Option to use either gpu or cpu to collect results. Defaults to False.

Returns

The prediction results.

Return type

dict[str, list]

mmtrack.apis.single_gpu_test(model, data_loader, show=False, out_dir=None, fps=3, show_score_thr=0.3)[source]

Test model with single gpu.

Parameters
  • model (nn.Module) – Model to be tested.

  • data_loader (nn.Dataloader) – Pytorch data loader.

  • show (bool, optional) – If True, visualize the prediction results. Defaults to False.

  • out_dir (str, optional) – Path of directory to save the visualization results. Defaults to None.

  • fps (int, optional) – FPS of the output video. Defaults to 3.

  • show_score_thr (float, optional) – The score threshold of visualization (Only used in VID for now). Defaults to 0.3.

Returns

The prediction results.

Return type

dict[str, list]

mmtrack.apis.train_model(model, dataset, cfg, distributed=False, validate=False, timestamp=None, meta=None)[source]

Train model entry function.

Parameters
  • model (nn.Module) – The model to be trained.

  • dataset (Dataset) – Train dataset.

  • cfg (dict) – The config dict for training.

  • distributed (bool) – Whether to use distributed training. Default: False.

  • validate (bool) – Whether to do evaluation. Default: False.

  • timestamp (str | None) – Local time for runner. Default: None.

  • meta (dict | None) – Meta dict to record some important information. Default: None

mmtrack.core

anchor

class mmtrack.core.anchor.SiameseRPNAnchorGenerator(strides, *args, **kwargs)[source]

Anchor generator for siamese rpn.

Please refer to mmdet/core/anchor/anchor_generator.py:AnchorGenerator for detailed docstring.

gen_2d_hanning_windows(featmap_sizes, device='cuda')[source]

Generate 2D hanning window.

Parameters
  • featmap_sizes (list[torch.size]) – List of torch.size recording the resolution (height, width) of the multi-level feature maps.

  • device (str) – Device the tensor will be put on. Defaults to ‘cuda’.

Returns

List of 2D hanning window with shape (num_base_anchors[i] * featmap_sizes[i][0] * featmap_sizes[i][1]).

Return type

list[Tensor]

gen_single_level_base_anchors(base_size, scales, ratios, center=None)[source]

Generate base anchors of a single level feature map.

Parameters
  • base_size (int | float) – Basic size of an anchor.

  • scales (torch.Tensor) – Scales of the anchor.

  • ratios (torch.Tensor) – The ratio between between the height and width of anchors in a single level.

  • center (tuple[float], optional) – The center of the base anchor related to a single feature grid. Defaults to None.

Returns

Anchors of one spatial location in a single level feature map in [tl_x, tl_y, br_x, br_y] format.

Return type

torch.Tensor

evaluation

class mmtrack.core.evaluation.DistEvalHook(dataloader: torch.utils.data.dataloader.DataLoader, start: Optional[int] = None, interval: int = 1, by_epoch: bool = True, save_best: Optional[str] = None, rule: Optional[str] = None, test_fn: Optional[Callable] = None, greater_keys: Optional[List[str]] = None, less_keys: Optional[List[str]] = None, broadcast_bn_buffer: bool = True, tmpdir: Optional[str] = None, gpu_collect: bool = False, out_dir: Optional[str] = None, file_client_args: Optional[dict] = None, **eval_kwargs)[source]

Please refer to mmcv.runner.hooks.evaluation.py:DistEvalHook for detailed docstring.

class mmtrack.core.evaluation.EvalHook(dataloader: torch.utils.data.dataloader.DataLoader, start: Optional[int] = None, interval: int = 1, by_epoch: bool = True, save_best: Optional[str] = None, rule: Optional[str] = None, test_fn: Optional[Callable] = None, greater_keys: Optional[List[str]] = None, less_keys: Optional[List[str]] = None, out_dir: Optional[str] = None, file_client_args: Optional[dict] = None, **eval_kwargs)[source]

Please refer to mmcv.runner.hooks.evaluation.py:EvalHook for detailed docstring.

mmtrack.core.evaluation.bbox2region(bbox)[source]

Convert bbox to Rectangle or Polygon Class object.

Parameters

bbox (ndarray) – the format of rectangle bbox is (x1, y1, w, h); the format of polygon is (x1, y1, x2, y2, …).

Returns

Rectangle or Polygon Class object.

mmtrack.core.evaluation.eval_mot(results, annotations, logger=None, classes=None, iou_thr=0.5, ignore_iof_thr=0.5, ignore_by_classes=False, nproc=4)[source]

Evaluation CLEAR MOT metrics.

Parameters
  • results (list[list[list[ndarray]]]) – The first list indicates videos, The second list indicates images. The third list indicates categories. The ndarray indicates the tracking results.

  • annotations (list[list[dict]]) –

    The first list indicates videos, The second list indicates images. The third list indicates the annotations of each video. Keys of annotations are

    • bboxes: numpy array of shape (n, 4)

    • labels: numpy array of shape (n, )

    • instance_ids: numpy array of shape (n, )

    • bboxes_ignore (optional): numpy array of shape (k, 4)

    • labels_ignore (optional): numpy array of shape (k, )

  • logger (logging.Logger | str | None, optional) – The way to print the evaluation results. Defaults to None.

  • classes (list, optional) – Classes in the dataset. Defaults to None.

  • iou_thr (float, optional) – IoU threshold for evaluation. Defaults to 0.5.

  • ignore_iof_thr (float, optional) – Iof threshold to ignore results. Defaults to 0.5.

  • ignore_by_classes (bool, optional) – Whether ignore the results by classes or not. Defaults to False.

  • nproc (int, optional) – Number of the processes. Defaults to 4.

Returns

Evaluation results.

Return type

dict[str, float]

mmtrack.core.evaluation.eval_sot_accuracy_robustness(results, annotations, burnin=10, ignore_unknown=True, videos_wh=None)[source]

Calculate accuracy and robustness over all tracking sequences.

Parameters
  • results (list[list[ndarray]]) –

    The first list contains the tracking results of each video. The second list contains the tracking results of each frame in one video. The ndarray have two cases:

    • bbox: denotes the normal tracking box in [x1, y1, w, h]

      format.

    • special tracking state: [0] denotes the unknown state,

      namely the skipping frame after failure, [1] denotes the initialized state, and [2] denotes the failed state.

  • annotations (list[ndarray]) – The list contains the gt_bboxes of each video. The ndarray is gt_bboxes of one video. It’s in (N, 4) shape. Each bbox is in (x1, y1, w, h) format.

  • burnin – number of frames that have to be ignored after the re-initialization when calculating accuracy. Default is 10.

  • ignore_unknown (bool) – whether ignore the skipping frames after failures when calculating accuracy. Default is True.

  • videos_wh (list[tuple(width, height), ...]) – The list contains the width and height of each video. Default is None.

Returns

float}: accuracy and robustness in EAO evaluation metric.

Return type

dict{str

mmtrack.core.evaluation.eval_sot_eao(results, annotations, interval=[100, 356], videos_wh=None)[source]

Calculate EAO socre over all tracking sequences.

Parameters
  • results (list[list[ndarray]]) –

    The first list contains the tracking results of each video. The second list contains the tracking results of each frame in one video. The ndarray have two cases:

    • bbox: denotes the normal tracking box in [x1, y1, w, h]

      format.

    • special tracking state: [0] denotes the unknown state,

      namely the skipping frame after failure, [1] denotes the initialized state, and [2] denotes the failed state.

  • annotations (list[ndarray]) – The list contains the gt_bboxes of each video. The ndarray is gt_bboxes of one video. It’s in (N, 4) shape. Each bbox is in (x1, y1, w, h) format.

  • interval – an specified interval in EAO curve used to calculate the EAO score. There are different settings in different VOT challenge. Default is VOT2018 setting: [100, 356].

  • videos_wh (list[tuple(width, height), ...]) – The list contains the width and height of each video. Default is None.

Returns

EAO score in EAO evaluation metric.

Return type

dict[str, float]

mmtrack.core.evaluation.eval_sot_ope(results, annotations, visible_infos=None)[source]

Evaluation in OPE protocol.

Parameters
  • results (list[list[ndarray]]) – The first list contains the tracking results of each video. The second list contains the tracking results of each frame in one video. The ndarray denotes the tracking box in [tl_x, tl_y, br_x, br_y] format.

  • annotations (list[ndarray]) – The list contains the bbox annotations of each video. The ndarray is gt_bboxes of one video. It’s in (N, 4) shape. Each bbox is in (x1, y1, x2, y2) format.

  • visible_infos (list[ndarray] | None) – If not None, the list contains the visible information of each video. The ndarray is visibility (with bool type) of object in one video. It’s in (N,) shape. Default to None.

Returns

OPE style evaluation metric (i.e. success, norm precision and precision).

Return type

dict[str, float]

mmtrack.core.evaluation.eval_vis(test_results, vis_anns, logger=None)[source]

Evaluation on VIS metrics.

Parameters
  • test_results (dict(list[dict])) – Testing results of the VIS dataset.

  • vis_anns (dict(list[dict])) – The annotation in the format of YouTube-VIS.

  • logger (logging.Logger | str | None) – Logger used for printing related information during evaluation. Default: None.

Returns

Evaluation results.

Return type

dict[str, float]

motion

mmtrack.core.motion.flow_warp_feats(x, flow)[source]

Use flow to warp feature map.

Parameters
  • x (Tensor) – of shape (N, C, H_x, W_x).

  • flow (Tensor) – of shape (N, C, H_f, W_f).

Returns

The warpped feature map with shape (N, C, H_x, W_x).

Return type

Tensor

optimizer

class mmtrack.core.optimizer.SiameseRPNFp16OptimizerHook(backbone_start_train_epoch, backbone_train_layers, **kwargs)[source]

FP16Optimizer hook for siamese rpn.

Parameters
  • backbone_start_train_epoch (int) – Start to train the backbone at backbone_start_train_epoch-th epoch. Note the epoch in this class counts from 0, while the epoch in the log file counts from 1.

  • backbone_train_layers (list(str)) – List of str denoting the stages needed be trained in backbone.

before_train_epoch(runner)[source]

If runner.epoch >= self.backbone_start_train_epoch, start to train the backbone.

class mmtrack.core.optimizer.SiameseRPNLrUpdaterHook(lr_configs=[{'type': 'step', 'start_lr_factor': 0.2, 'end_lr_factor': 1.0, 'end_epoch': 5}, {'type': 'log', 'start_lr_factor': 1.0, 'end_lr_factor': 0.1, 'end_epoch': 20}], **kwargs)[source]

Learning rate updater for siamese rpn.

Parameters

lr_configs (list[dict]) – List of dict where each dict denotes the configuration of specifical learning rate updater and must have ‘type’.

get_lr(runner, base_lr)[source]

Get a specifical learning rate for each epoch.

class mmtrack.core.optimizer.SiameseRPNOptimizerHook(backbone_start_train_epoch, backbone_train_layers, **kwargs)[source]

Optimizer hook for siamese rpn.

Parameters
  • backbone_start_train_epoch (int) – Start to train the backbone at backbone_start_train_epoch-th epoch. Note the epoch in this class counts from 0, while the epoch in the log file counts from 1.

  • backbone_train_layers (list(str)) – List of str denoting the stages needed be trained in backbone.

before_train_epoch(runner)[source]

If runner.epoch >= self.backbone_start_train_epoch, start to train the backbone.

track

mmtrack.core.track.depthwise_correlation(x, kernel)[source]

Depthwise cross correlation.

This function is proposed in SiamRPN++.

Parameters
  • x (Tensor) – of shape (N, C, H_x, W_x).

  • kernel (Tensor) – of shape (N, C, H_k, W_k).

Returns

of shape (N, C, H_o, W_o). H_o = H_x - H_k + 1. So does W_o.

Return type

Tensor

mmtrack.core.track.embed_similarity(key_embeds, ref_embeds, method='dot_product', temperature=- 1)[source]

Calculate feature similarity from embeddings.

Parameters
  • key_embeds (Tensor) – Shape (N1, C).

  • ref_embeds (Tensor) – Shape (N2, C).

  • method (str, optional) – Method to calculate the similarity, options are ‘dot_product’ and ‘cosine’. Defaults to ‘dot_product’.

  • temperature (int, optional) – Softmax temperature. Defaults to -1.

Returns

Similarity matrix of shape (N1, N2).

Return type

Tensor

mmtrack.core.track.imrenormalize(img, img_norm_cfg, new_img_norm_cfg)[source]

Re-normalize the image.

Parameters
  • img (Tensor | ndarray) – Input image. If the input is a Tensor, the shape is (1, C, H, W). If the input is a ndarray, the shape is (H, W, C).

  • img_norm_cfg (dict) – Original configuration for the normalization.

  • new_img_norm_cfg (dict) – New configuration for the normalization.

Returns

Output image with the same type and shape of the input.

Return type

Tensor | ndarray

mmtrack.core.track.interpolate_tracks(tracks, min_num_frames=5, max_num_frames=20)[source]

Interpolate tracks linearly to make tracks more complete.

This function is proposed in “ByteTrack: Multi-Object Tracking by Associating Every Detection Box.” `ByteTrack<https://arxiv.org/abs/2110.06864>`_.

Parameters
  • tracks (ndarray) – With shape (N, 7). Each row denotes (frame_id, track_id, x1, y1, x2, y2, score).

  • min_num_frames (int, optional) – The minimum length of a track that will be interpolated. Defaults to 5.

  • max_num_frames (int, optional) – The maximum disconnected length in a track. Defaults to 20.

Returns

The interpolated tracks with shape (N, 7). Each row denotes

(frame_id, track_id, x1, y1, x2, y2, score)

Return type

ndarray

mmtrack.core.track.outs2results(bboxes=None, labels=None, masks=None, ids=None, num_classes=None, **kwargs)[source]

Convert tracking/detection results to a list of numpy arrays.

Parameters
  • bboxes (torch.Tensor | np.ndarray) – shape (n, 5)

  • labels (torch.Tensor | np.ndarray) – shape (n, )

  • masks (torch.Tensor | np.ndarray) – shape (n, h, w)

  • ids (torch.Tensor | np.ndarray) – shape (n, )

  • num_classes (int) – class number, not including background class

Returns

list(ndarray) | list[list[np.ndarray]]]: tracking/detection results of each class. It may contain keys as belows:

  • bbox_results (list[np.ndarray]): Each list denotes bboxes of one

    category.

  • mask_results (list[list[np.ndarray]]): Each outer list denotes masks

    of one category. Each inner list denotes one mask belonging to the category. Each mask has shape (h, w).

Return type

dict[str

mmtrack.core.track.results2outs(bbox_results=None, mask_results=None, mask_shape=None, **kwargs)[source]

Restore the results (list of results of each category) into the results of the model forward.

Parameters
  • bbox_results (list[np.ndarray]) – Each list denotes bboxes of one category.

  • mask_results (list[list[np.ndarray]]) – Each outer list denotes masks of one category. Each inner list denotes one mask belonging to the category. Each mask has shape (h, w).

  • mask_shape (tuple[int]) – The shape (h, w) of mask.

Returns

tracking results of each class. It may contain keys as belows:

  • bboxes (np.ndarray): shape (n, 5)

  • labels (np.ndarray): shape (n, )

  • masks (np.ndarray): shape (n, h, w)

  • ids (np.ndarray): shape (n, )

Return type

tuple

utils

mmtrack.core.utils.crop_image(image, crop_region, crop_size, padding=(0, 0, 0))[source]

Crop image based on crop_region and crop_size.

Parameters
  • image (ndarray) – of shape (H, W, 3).

  • crop_region (ndarray) – of shape (4, ) in [x1, y1, x2, y2] format.

  • crop_size (int) – Crop size.

  • padding (tuple | ndarray) – of shape (3, ) denoting the padding values.

Returns

Cropped image of shape (crop_size, crop_size, 3).

Return type

ndarray

mmtrack.core.utils.imshow_mot_errors(*args, backend='cv2', **kwargs)[source]

Show the wrong tracks on the input image.

Parameters

backend (str, optional) – Backend of visualization. Defaults to ‘cv2’.

mmtrack.core.utils.imshow_tracks(*args, backend='cv2', **kwargs)[source]

Show the tracks on the input image.

mmtrack.datasets

datasets

class mmtrack.datasets.BaseSOTDataset(img_prefix, pipeline, split, ann_file=None, test_mode=False, bbox_min_size=0, only_eval_visible=False, file_client_args={'backend': 'disk'}, **kwargs)[source]

Dataset of single object tracking. The dataset can both support training and testing mode.

Parameters
  • img_prefix (str) – Prefix in the paths of image files.

  • pipeline (list[dict]) – Processing pipeline.

  • split (str) – Dataset split.

  • ann_file (str, optional) – The file contains data information. It will be loaded and parsed in the self.load_data_infos function.

  • test_mode (bool, optional) – Default to False.

  • bbox_min_size (int, optional) – Only bounding boxes whose sizes are larger than bbox_min_size can be regarded as valid. Default to 0.

  • only_eval_visible (bool, optional) – Whether to only evaluate frames where object are visible. Default to False.

  • file_client_args (dict, optional) – Arguments to instantiate a FileClient. Default: dict(backend=’disk’).

evaluate(results, metric=['track'], logger=None)[source]

Default evaluation standard is OPE.

Parameters
  • results (dict(list[ndarray])) – tracking results. The ndarray is in (x1, y1, x2, y2, score) format.

  • metric (list, optional) – defaults to [‘track’].

  • logger (logging.Logger | str | None, optional) – defaults to None.

get_ann_infos_from_video(video_ind)[source]

Get annotation information in a video.

Parameters

video_ind (int) – video index

Returns

{‘bboxes’: ndarray in (N, 4) shape, ‘bboxes_isvalid’:

ndarray, ‘visible’:ndarray}. The annotation information in some datasets may contain ‘visible_ratio’. The bbox is in (x1, y1, x2, y2) format.

Return type

dict

get_bboxes_from_video(video_ind)[source]

Get bboxes annotation about the instance in a video.

Parameters

video_ind (int) – video index

Returns

in [N, 4] shape. The N is the number of bbox and the bbox

is in (x, y, w, h) format.

Return type

ndarray

get_img_infos_from_video(video_ind)[source]

Get image information in a video.

Parameters

video_ind (int) – video index

Returns

{‘filename’: list[str], ‘frame_ids’:ndarray, ‘video_id’:int}

Return type

dict

get_len_per_video(video_ind)[source]

Get the number of frames in a video.

get_visibility_from_video(video_ind)[source]

Get the visible information of instance in a video.

load_as_video

The self.data_info is a list, which the length is the number of videos. The default content is in the following format: [

{

‘video_path’: the video path ‘ann_path’: the annotation path ‘start_frame_id’: the starting frame ID number contained in

the image name

‘end_frame_id’: the ending frame ID number contained in the

image name

‘framename_template’: the template of image name

]

pre_pipeline(results)[source]

Prepare results dict for pipeline.

The following keys in dict will be called in the subsequent pipeline.

prepare_test_data(video_ind, frame_ind)[source]

Get testing data of one frame. We parse one video, get one frame from it and pass the frame information to the pipeline.

Parameters
  • video_ind (int) – video index

  • frame_ind (int) – frame index

Returns

testing data of one frame.

Return type

dict

prepare_train_data(video_ind)[source]

Get training data sampled from some videos. We firstly sample two videos from the dataset and then parse the data information. The first operation in the training pipeline is frames sampling.

Parameters

video_ind (int) – video index

Returns

training data pairs, triplets or groups.

Return type

dict

class mmtrack.datasets.CocoVID(*args: Any, **kwargs: Any)[source]

Inherit official COCO class in order to parse the annotations of bbox- related video tasks.

Parameters
  • annotation_file (str) – location of annotation file. Defaults to None.

  • load_img_as_vid (bool) – If True, convert image data to video data, which means each image is converted to a video. Defaults to False.

convert_img_to_vid(dataset)[source]

Convert image data to video data.

createIndex()[source]

Create index.

get_img_ids_from_ins_id(insId)[source]

Get image ids from given instance id.

Parameters

insId (int) – The given instance id.

Returns

Image ids of given instance id.

Return type

list[int]

get_img_ids_from_vid(vidId)[source]

Get image ids from given video id.

Parameters

vidId (int) – The given video id.

Returns

Image ids of given video id.

Return type

list[int]

get_ins_ids_from_vid(vidId)[source]

Get instance ids from given video id.

Parameters

vidId (int) – The given video id.

Returns

Instance ids of given video id.

Return type

list[int]

get_vid_ids(vidIds=[])[source]

Get video ids that satisfy given filter conditions.

Default return all video ids.

Parameters

vidIds (list[int]) – The given video ids. Defaults to [].

Returns

Video ids.

Return type

list[int]

load_vids(ids=[])[source]

Get video information of given video ids.

Default return all videos information.

Parameters

ids (list[int]) – The given video ids. Defaults to [].

Returns

List of video information.

Return type

list[dict]

class mmtrack.datasets.CocoVideoDataset(load_as_video=True, key_img_sampler={'interval': 1}, ref_img_sampler={'filter_key_img': True, 'frame_range': 10, 'method': 'uniform', 'num_ref_imgs': 1, 'return_key_img': True, 'stride': 1}, test_load_ann=False, *args, **kwargs)[source]

Base coco video dataset for VID, MOT and SOT tasks.

Parameters
  • load_as_video (bool) – If True, using COCOVID class to load dataset, otherwise, using COCO class. Default: True.

  • key_img_sampler (dict) – Configuration of sampling key images.

  • ref_img_sampler (dict) – Configuration of sampling ref images.

  • test_load_ann (bool) – If True, loading annotations during testing, otherwise, not loading. Default: False.

evaluate(results, metric=['bbox', 'track'], logger=None, bbox_kwargs={'classwise': False, 'iou_thrs': None, 'metric_items': None, 'proposal_nums': (100, 300, 1000)}, track_kwargs={'ignore_by_classes': False, 'ignore_iof_thr': 0.5, 'iou_thr': 0.5, 'nproc': 4})[source]

Evaluation in COCO protocol and CLEAR MOT metric (e.g. MOTA, IDF1).

Parameters
  • results (dict) – Testing results of the dataset.

  • metric (str | list[str]) – Metrics to be evaluated. Options are ‘bbox’, ‘segm’, ‘track’.

  • logger (logging.Logger | str | None) – Logger used for printing related information during evaluation. Default: None.

  • bbox_kwargs (dict) – Configuration for COCO styple evaluation.

  • track_kwargs (dict) – Configuration for CLEAR MOT evaluation.

Returns

COCO style and CLEAR MOT evaluation metric.

Return type

dict[str, float]

get_ann_info(img_info)[source]

Get COCO annotations by the information of image.

Parameters

img_info (int) – Information of image.

Returns

Annotation information of img_info.

Return type

dict

key_img_sampling(img_ids, interval=1)[source]

Sampling key images.

load_annotations(ann_file)[source]

Load annotations from COCO/COCOVID style annotation file.

Parameters

ann_file (str) – Path of annotation file.

Returns

Annotation information from COCO/COCOVID api.

Return type

list[dict]

load_video_anns(ann_file)[source]

Load annotations from COCOVID style annotation file.

Parameters

ann_file (str) – Path of annotation file.

Returns

Annotation information from COCOVID api.

Return type

list[dict]

prepare_data(idx)[source]

Get data and annotations after pipeline.

Parameters

idx (int) – Index of data.

Returns

Data and annotations after pipeline with new keys introduced by pipeline.

Return type

dict

prepare_results(img_info)[source]

Prepare results for image (e.g. the annotation information, …).

prepare_test_img(idx)[source]

Get testing data after pipeline.

Parameters

idx (int) – Index of data.

Returns

Testing data after pipeline with new keys intorduced by pipeline.

Return type

dict

prepare_train_img(idx)[source]

Get training data and annotations after pipeline.

Parameters

idx (int) – Index of data.

Returns

Training data and annotations after pipeline with new keys introduced by pipeline.

Return type

dict

ref_img_sampling(img_info, frame_range, stride=1, num_ref_imgs=1, filter_key_img=True, method='uniform', return_key_img=True)[source]

Sampling reference frames in the same video for key frame.

Parameters
  • img_info (dict) – The information of key frame.

  • frame_range (List(int) | int) – The sampling range of reference frames in the same video for key frame.

  • stride (int) – The sampling frame stride when sampling reference images. Default: 1.

  • num_ref_imgs (int) – The number of sampled reference images. Default: 1.

  • filter_key_img (bool) – If False, the key image will be in the sampling reference candidates, otherwise, it is exclude. Default: True.

  • method (str) – The sampling method. Options are ‘uniform’, ‘bilateral_uniform’, ‘test_with_adaptive_stride’, ‘test_with_fix_stride’. ‘uniform’ denotes reference images are randomly sampled from the nearby frames of key frame. ‘bilateral_uniform’ denotes reference images are randomly sampled from the two sides of the nearby frames of key frame. ‘test_with_adaptive_stride’ is only used in testing, and denotes the sampling frame stride is equal to (video length / the number of reference images). test_with_fix_stride is only used in testing with sampling frame stride equalling to stride. Default: ‘uniform’.

  • return_key_img (bool) – If True, the information of key frame is returned, otherwise, not returned. Default: True.

Returns

img_info and the reference images information or only the reference images information.

Return type

list(dict)

class mmtrack.datasets.DanceTrackDataset(visibility_thr=- 1, interpolate_tracks_cfg=None, detection_file=None, *args, **kwargs)[source]

Dataset for DanceTrack: https://github.com/DanceTrack/DanceTrack.

Most content is inherited from MOTChallengeDataset.

get_benchmark_and_eval_split()[source]

Get benchmark and dataset split to evaluate.

Get benchmark from upeper/lower-case image prefix and the dataset split to evaluate.

Returns

The first string denotes the type of dataset. The second string denots the split of the dataset to eval.

Return type

tuple(string)

class mmtrack.datasets.GOT10kDataset(*args, **kwargs)[source]

GOT10k Dataset of single object tracking.

The dataset can both support training and testing mode.

format_results(results, resfile_path=None, logger=None)[source]

Format the results to txts (standard format for GOT10k Challenge).

Parameters
  • results (dict(list[ndarray])) – Testing results of the dataset.

  • resfile_path (str) – Path to save the formatted results. Defaults to None.

  • logger (logging.Logger | str | None, optional) – defaults to None.

get_visibility_from_video(video_ind)[source]

Get the visible information of instance in a video.

load_data_infos(split='train')[source]

Load dataset information.

Parameters

split (str, optional) – the split of dataset. Defaults to ‘train’.

Returns

the length of the list is the number of videos. The
inner dict is in the following format:
{

‘video_path’: the video path ‘ann_path’: the annotation path ‘start_frame_id’: the starting frame number contained

in the image name

’end_frame_id’: the ending frame number contained in

the image name

’framename_template’: the template of image name

}

Return type

list[dict]

prepare_test_data(video_ind, frame_ind)[source]

Get testing data of one frame. We parse one video, get one frame from it and pass the frame information to the pipeline.

Parameters
  • video_ind (int) – video index

  • frame_ind (int) – frame index

Returns

testing data of one frame.

Return type

dict

class mmtrack.datasets.ImagenetVIDDataset(*args, **kwargs)[source]

ImageNet VID dataset for video object detection.

load_annotations(ann_file)[source]

Load annotations from COCO/COCOVID style annotation file.

Parameters

ann_file (str) – Path of annotation file.

Returns

Annotation information from COCO/COCOVID api.

Return type

list[dict]

load_image_anns(ann_file)[source]

Load annotations from COCO style annotation file.

Parameters

ann_file (str) – Path of annotation file.

Returns

Annotation information from COCO api.

Return type

list[dict]

load_video_anns(ann_file)[source]

Load annotations from COCOVID style annotation file.

Parameters

ann_file (str) – Path of annotation file.

Returns

Annotation information from COCOVID api.

Return type

list[dict]

class mmtrack.datasets.LaSOTDataset(*args, **kwargs)[source]

LaSOT dataset of single object tracking.

The dataset can both support training and testing mode.

get_visibility_from_video(video_ind)[source]

Get the visible information of instance in a video.

load_data_infos(split='test')[source]

Load dataset information.

Parameters

split (str, optional) – Dataset split. Defaults to ‘test’.

Returns

The length of the list is the number of videos. The
inner dict is in the following format:
{

‘video_path’: the video path ‘ann_path’: the annotation path ‘start_frame_id’: the starting frame number contained

in the image name

’end_frame_id’: the ending frame number contained in

the image name

’framename_template’: the template of image name

}

Return type

list[dict]

class mmtrack.datasets.MOTChallengeDataset(visibility_thr=- 1, interpolate_tracks_cfg=None, detection_file=None, *args, **kwargs)[source]

Dataset for MOTChallenge.

Parameters
  • visibility_thr (float, optional) – The minimum visibility for the objects during training. Default to -1.

  • interpolate_tracks_cfg (dict, optional) –

    If not None, Interpolate tracks linearly to make tracks more complete. Defaults to None. - min_num_frames (int, optional): The minimum length of a track

    that will be interpolated. Defaults to 5.

    • max_num_frames (int, optional): The maximum disconnected length

      in a track. Defaults to 20.

  • detection_file (str, optional) – The path of the public detection file. Default to None.

evaluate(results, metric='track', logger=None, resfile_path=None, bbox_iou_thr=0.5, track_iou_thr=0.5)[source]

Evaluation in MOT Challenge.

Parameters
  • results (list[list | tuple]) – Testing results of the dataset.

  • metric (str | list[str]) – Metrics to be evaluated. Options are ‘bbox’, ‘track’. Defaults to ‘track’.

  • logger (logging.Logger | str | None) – Logger used for printing related information during evaluation. Default: None.

  • resfile_path (str, optional) – Path to save the formatted results. Defaults to None.

  • bbox_iou_thr (float, optional) – IoU threshold for detection evaluation. Defaults to 0.5.

  • track_iou_thr (float, optional) – IoU threshold for tracking evaluation.. Defaults to 0.5.

Returns

MOTChallenge style evaluation metric.

Return type

dict[str, float]

format_bbox_results(results, infos, resfile)[source]

Format detection results.

format_results(results, resfile_path=None, metrics=['track'])[source]

Format the results to txts (standard format for MOT Challenge).

Parameters
  • results (dict(list[ndarray])) – Testing results of the dataset.

  • resfile_path (str, optional) – Path to save the formatted results. Defaults to None.

  • metrics (list[str], optional) – The results of the specific metrics will be formatted.. Defaults to [‘track’].

Returns

(resfile_path, resfiles, names, tmp_dir), resfile_path is the path to save the formatted results, resfiles is a dict containing the filepaths, names is a list containing the name of the videos, tmp_dir is the temporal directory created for saving files.

Return type

tuple

format_track_results(results, infos, resfile)[source]

Format tracking results.

get_benchmark_and_eval_split()[source]

Get benchmark and dataset split to evaluate.

Get benchmark from upeper/lower-case image prefix and the dataset split to evaluate.

Returns

The first string denotes the type of dataset. The second string denotes the split of the dataset to eval.

Return type

tuple(string)

get_dataset_cfg_for_hota(gt_folder, tracker_folder, seqmap)[source]

Get default configs for trackeval.datasets.MotChallenge2DBox.

Parameters
  • gt_folder (str) – the name of the GT folder

  • tracker_folder (str) – the name of the tracker folder

  • seqmap (str) – the file that contains the sequence of video names

Returns

Dataset Configs for MotChallenge2DBox.

load_detections(detection_file=None)[source]

Load public detections.

prepare_results(img_info)[source]

Prepare results for image (e.g. the annotation information, …).

class mmtrack.datasets.OTB100Dataset(*args, **kwargs)[source]

OTB100 dataset of single object tracking.

The dataset is only used to test.

get_bboxes_from_video(video_ind)[source]

Get bboxes annotation about the instance in a video.

Parameters

video_ind (int) – video index

Returns

in [N, 4] shape. The N is the bbox number and the bbox

is in (x, y, w, h) format.

Return type

ndarray

load_data_infos(split='test')[source]

Load dataset information.

Parameters

split (str, optional) – Dataset split. Defaults to ‘test’.

Returns

The length of the list is the number of videos. The
inner dict is in the following format:
{

‘video_path’: the video path ‘ann_path’: the annotation path ‘start_frame_id’: the starting frame number contained

in the image name

’end_frame_id’: the ending frame number contained in

the image name

’framename_template’: the template of image name ‘init_skip_num’: (optional) the number of skipped

frames when initializing tracker

}

Return type

list[dict]

class mmtrack.datasets.RandomSampleConcatDataset(dataset_cfgs, dataset_sampling_weights=None)[source]

A wrapper of concatenated dataset. Support randomly sampling one dataset from concatenated datasets and then getting samples from the sampled dataset.

Parameters
  • dataset_cfgs (list[dict]) – The list contains all configs of concatenated datasets.

  • dataset_sampling_weights (list[float]) – The list contains the sampling weights of each dataset.

class mmtrack.datasets.ReIDDataset(pipeline, triplet_sampler=None, *args, **kwargs)[source]

Dataset for ReID Dataset.

Parameters
  • pipeline (list) – a list of dict, where each element represents a operation defined in mmtrack.datasets.pipelines

  • triplet_sampler (dict) – The sampler for hard mining triplet loss.

evaluate(results, metric='mAP', metric_options=None, logger=None)[source]

Evaluate the ReID dataset.

Parameters
  • results (list) – Testing results of the dataset.

  • metric (str | list[str]) – Metrics to be evaluated. Default value is mAP.

  • metric_options – (dict, optional): Options for calculating metrics. Allowed keys are ‘rank_list’ and ‘max_rank’. Defaults to None.

  • logger (logging.Logger | str, optional) – Logger used for printing related information during evaluation. Defaults to None.

Returns

evaluation results

Return type

dict

load_annotations()[source]

Load annotations from ImageNet style annotation file.

Returns

Annotation information from ReID api.

Return type

list[dict]

prepare_data(idx)[source]

Prepare results for image (e.g. the annotation information, …).

triplet_sampling(pos_pid, num_ids=8, ins_per_id=4)[source]

Triplet sampler for hard mining triplet loss. First, for one pos_pid, random sample ins_per_id images with same person id.

Then, random sample num_ids - 1 negative ids. Finally, random sample ins_per_id images for each negative id.

Parameters
  • pos_pid (ndarray) – The person id of the anchor.

  • num_ids (int) – The number of person ids.

  • ins_per_id (int) – The number of image for each person.

Returns

Annotation information of num_ids X ins_per_id images.

Return type

List

class mmtrack.datasets.SOTCocoDataset(ann_file, *args, **kwargs)[source]

Coco dataset of single object tracking.

The dataset only support training mode.

get_bboxes_from_video(video_ind)[source]

Get bbox annotation about the instance in an image.

Parameters

video_ind (int) – video index. Each video_ind denotes an instance.

Returns

in [1, 4] shape. The bbox is in (x, y, w, h) format.

Return type

ndarray

get_img_infos_from_video(video_ind)[source]

Get all frame paths in a video.

Parameters

video_ind (int) – video index. Each video_ind denotes an instance.

Returns

all image paths

Return type

list[str]

get_len_per_video(video_ind)[source]

Get the number of frames in a video.

load_data_infos(split='train')[source]

Load dataset information. Each instance is viewed as a video.

Parameters

split (str, optional) – The split of dataset. Defaults to ‘train’.

Returns

The length of the list is the number of valid object

annotations. The elemment in the list is annotation ID in coco API.

Return type

list[int]

class mmtrack.datasets.SOTImageNetVIDDataset(ann_file, *args, **kwargs)[source]

ImageNet VID dataset of single object tracking.

The dataset only support training mode.

get_ann_infos_from_video(video_ind)[source]

Get annotation information in a video. Note: We overload this function for speed up loading video information.

Parameters

video_ind (int) – video index. Each video_ind denotes an instance.

Returns

{‘bboxes’: ndarray in (N, 4) shape, ‘bboxes_isvalid’:

ndarray, ‘visible’:ndarray}. The bbox is in (x1, y1, x2, y2) format.

Return type

dict

get_bboxes_from_video(video_ind)[source]

Get bbox annotation about the instance in a video. Considering get_bboxes_from_video in SOTBaseDataset is not compatible with SOTImageNetVIDDataset, we oveload this function though it’s not called by self.get_ann_infos_from_video.

Parameters

video_ind (int) – video index. Each video_ind denotes an instance.

Returns

in [N, 4] shape. The bbox is in (x, y, w, h) format.

Return type

ndarray

get_img_infos_from_video(video_ind)[source]

Get image information in a video.

Parameters

video_ind (int) – video index

Returns

{‘filename’: list[str], ‘frame_ids’:ndarray, ‘video_id’:int}

Return type

dict

get_len_per_video(video_ind)[source]

Get the number of frames in a video.

get_visibility_from_video(video_ind)[source]

Get the visible information in a video.

Considering get_visibility_from_video in SOTBaseDataset is not compatible with SOTImageNetVIDDataset, we oveload this function though it’s not called by self.get_ann_infos_from_video.

load_data_infos(split='train')[source]

Load dataset information.

Parameters

split (str, optional) – The split of dataset. Defaults to ‘train’.

Returns

The length of the list is the number of instances. The

elemment in the list is instance ID in coco API.

Return type

list[int]

class mmtrack.datasets.SOTTestDataset(*args, **kwargs)[source]

Dataset for the testing of single object tracking.

The dataset doesn’t support training mode.

evaluate(results, metric=['track'], logger=None)[source]

Evaluation in OPE protocol.

Parameters
  • results (dict) – Testing results of the dataset.

  • metric (str | list[str]) – Metrics to be evaluated. Options are ‘track’.

  • logger (logging.Logger | str | None) – Logger used for printing related information during evaluation. Default: None.

Returns

OPE style evaluation metric (i.e. success, norm precision and precision).

Return type

dict[str, float]

class mmtrack.datasets.SOTTrainDataset(*args, **kwargs)[source]

Dataset for the training of single object tracking.

The dataset doesn’t support testing mode.

get_snippet_of_instance(idx)[source]

Get a snippet of an instance in a video.

Parameters

idx (int) – Index of data.

Returns

(snippet, image_id, instance_id), snippet is a list containing the successive image ids where the instance appears, image_id is a random sampled image id from the snippet.

Return type

tuple

load_video_anns(ann_file)[source]

Load annotations from COCOVID style annotation file.

Parameters

ann_file (str) – Path of annotation file.

Returns

Annotation information from COCOVID api.

Return type

list[dict]

prepare_results(img_id, instance_id, is_positive_pair)[source]

Get training data and annotations.

Parameters
  • img_id (int) – The id of image.

  • instance_id (int) – The id of instance.

  • is_positive_pair (bool) – denoting positive or negative sample pair.

Returns

The information of training image and annotation.

Return type

dict

prepare_train_img(idx)[source]

Get training data and annotations after pipeline.

Parameters

idx (int) – Index of data.

Returns

Training data and annotation after pipeline with new keys introduced by pipeline.

Return type

dict

ref_img_sampling(snippet, image_id, instance_id, frame_range=5, pos_prob=0.8, filter_key_img=False, return_key_img=True, **kwargs)[source]

Get a search image for an instance in an exemplar image.

If sampling a positive search image, the positive search image is randomly sampled from the exemplar image, where the sampled range is decided by frame_range. If sampling a negative search image, the negative search image and negative instance are randomly sampled from the entire dataset.

Parameters
  • snippet (list[int]) – The successive image ids where the instance appears.

  • image_id (int) – The id of exemplar image where the instance appears.

  • instance_id (int) – The id of the instance.

  • frame_range (List(int) | int) – The frame range of sampling a positive search image for the exemplar image. Default: 5.

  • pos_prob (float) – The probability of sampling a positive search image. Default: 0.8.

  • filter_key_img (bool) – If False, the exemplar image will be in the sampling candidates, otherwise, it is exclude. Default: False.

  • return_key_img (bool) – If True, the image_id and instance_id are returned, otherwise, not returned. Default: True.

Returns

(image_ids, instance_ids, is_positive_pair), image_ids is a list that must contain search image id and may contain image_id, instance_ids is a list that must contain search instance id and may contain instance_id, is_positive_pair is a bool denoting positive or negative sample pair.

Return type

tuple

class mmtrack.datasets.TaoDataset(*args, **kwargs)[source]

Dataset for TAO.

evaluate(results, metric=['bbox', 'track'], logger=None, resfile_path=None)[source]

Evaluation in COCO protocol and CLEAR MOT metric (e.g. MOTA, IDF1).

Parameters
  • results (dict) – Testing results of the dataset.

  • metric (str | list[str]) – Metrics to be evaluated. Options are ‘bbox’, ‘segm’, ‘track’.

  • logger (logging.Logger | str | None) – Logger used for printing related information during evaluation. Default: None.

  • bbox_kwargs (dict) – Configuration for COCO styple evaluation.

  • track_kwargs (dict) – Configuration for CLEAR MOT evaluation.

Returns

COCO style and CLEAR MOT evaluation metric.

Return type

dict[str, float]

format_results(results, resfile_path=None)[source]

Format the results to json (standard format for TAO evaluation).

Parameters
  • results (list[ndarray]) – Testing results of the dataset.

  • resfile_path (str, optional) – Path to save the formatted results. Defaults to None.

Returns

(result_files, tmp_dir), result_files is a dict containing the json filepaths, tmp_dir is the temporal directory created for saving json files when resfile_path is not specified.

Return type

tuple

load_annotations(ann_file)[source]

Load annotation from annotation file.

load_lvis_anns(ann_file)[source]

Load annotation from COCO style annotation file.

Parameters

ann_file (str) – Path of annotation file.

Returns

Annotation info from COCO api.

Return type

list[dict]

load_tao_anns(ann_file)[source]

Load annotation from COCOVID style annotation file.

Parameters

ann_file (str) – Path of annotation file.

Returns

Annotation info from COCOVID api.

Return type

list[dict]

class mmtrack.datasets.TrackingNetDataset(chunks_list=['all'], *args, **kwargs)[source]

TrackingNet dataset of single object tracking.

The dataset can both support training and testing mode.

format_results(results, resfile_path=None, logger=None)[source]

Format the results to txts (standard format for TrackingNet Challenge).

Parameters
  • results (dict(list[ndarray])) – Testing results of the dataset.

  • resfile_path (str) – Path to save the formatted results. Defaults to None.

  • logger (logging.Logger | str | None, optional) – defaults to None.

load_data_infos(split='train')[source]

Load dataset information.

Parameters

split (str, optional) – the split of dataset. Defaults to ‘train’.

Returns

the length of the list is the number of videos. The
inner dict is in the following format:
{

‘video_path’: the video path ‘ann_path’: the annotation path ‘start_frame_id’: the starting frame ID number

contained in the image name

’end_frame_id’: the ending frame ID number contained in

the image name

’framename_template’: the template of image name

}

Return type

list[dict]

prepare_test_data(video_ind, frame_ind)[source]

Get testing data of one frame. We parse one video, get one frame from it and pass the frame information to the pipeline.

Parameters
  • video_ind (int) – video index

  • frame_ind (int) – frame index

Returns

testing data of one frame.

Return type

dict

class mmtrack.datasets.UAV123Dataset(*args, **kwargs)[source]

UAV123 dataset of single object tracking.

The dataset is only used to test.

load_data_infos(split='test')[source]

Load dataset information.

Parameters

split (str, optional) – Dataset split. Defaults to ‘test’.

Returns

The length of the list is the number of videos. The
inner dict is in the following format:
{

‘video_path’: the video path ‘ann_path’: the annotation path ‘start_frame_id’: the starting frame number contained

in the image name

’end_frame_id’: the ending frame number contained in

the image name

’framename_template’: the template of image name

}

Return type

list[dict]

class mmtrack.datasets.VOTDataset(dataset_type='vot2018', *args, **kwargs)[source]

VOT dataset of single object tracking.

The dataset is only used to test.

evaluate(results, metric=['track'], logger=None, interval=None)[source]

Evaluation in VOT protocol.

Parameters
  • results (dict) – Testing results of the dataset. The tracking bboxes are in (tl_x, tl_y, br_x, br_y) format.

  • metric (str | list[str]) – Metrics to be evaluated. Options are ‘track’.

  • logger (logging.Logger | str | None) – Logger used for printing related information during evaluation. Default: None.

  • interval (list) – an specified interval in EAO curve used to calculate the EAO score. There are different settings in different VOT challenges.

Returns

Return type

dict[str, float]

get_ann_infos_from_video(video_ind)[source]

Get bboxes annotation about the instance in a video.

Parameters

video_ind (int) – video index

Returns

in [N, 8] shape. The N is the bbox number and the bbox

is in (x1, y1, x2, y2, x3, y3, x4, y4) format.

Return type

ndarray

load_data_infos(split='test')[source]

Load dataset information.

Parameters

split (str, optional) – Dataset split. Defaults to ‘test’.

Returns

The length of the list is the number of videos. The
inner dict is in the following format:
{

‘video_path’: the video path ‘ann_path’: the annotation path ‘start_frame_id’: the starting frame number contained

in the image name

’end_frame_id’: the ending frame number contained in

the image name

’framename_template’: the template of image name

}

Return type

list[dict]

class mmtrack.datasets.YouTubeVISDataset(dataset_version, *args, **kwargs)[source]

YouTube VIS dataset for video instance segmentation.

convert_back_to_vis_format()[source]

Convert the annotation back to the format of YouTube-VIS. The main difference between the two is the format of ‘annotation’. Before modification, it is recorded in the unit of images, and after modification, it is recorded in the unit of instances.This operation is to make it easier to use the official eval API.

Returns

A dict with 3 keys, categories, annotations

and videos.

  • categories (list[dict]): Each dict has 2 keys, id and name.
  • videos (list[dict]): Each dict has 4 keys of video info, id, name, width and height.
  • annotations (list[dict]): Each dict has 7 keys of video info, category_id, segmentations, bboxes, video_id, areas, id and iscrowd.

Return type

dict

evaluate(results, metric=['track_segm'], logger=None)[source]

Evaluation in COCO protocol.

Parameters
  • results (dict) – Testing results of the dataset.

  • metric (str | list[str]) – Metrics to be evaluated. Options are ‘track_segm’.

  • logger (logging.Logger | str | None) – Logger used for printing related information during evaluation. Default: None.

Returns

COCO style evaluation metric.

Return type

dict[str, float]

format_results(results, resfile_path=None, metrics=['track_segm'], save_as_json=True)[source]

Format the results to a zip file (standard format for YouTube-VIS Challenge).

Parameters
  • results (dict(list[ndarray])) – Testing results of the dataset.

  • resfile_path (str, optional) – Path to save the formatted results. Defaults to None.

  • metrics (list[str], optional) – The results of the specific metrics will be formatted. Defaults to [‘track_segm’].

  • save_as_json (bool, optional) – Whether to save the json results file. Defaults to True.

Returns

(resfiles, tmp_dir), resfiles is the path of the result json file, tmp_dir is the temporal directory created for saving files.

Return type

tuple

mmtrack.datasets.build_dataloader(dataset, samples_per_gpu, workers_per_gpu, num_gpus=1, samples_per_epoch=None, dist=True, shuffle=True, seed=None, persistent_workers=False, **kwargs)[source]

Build PyTorch DataLoader.

In distributed training, each GPU/process has a dataloader. In non-distributed training, there is only one dataloader for all GPUs.

Parameters
  • dataset (Dataset) – A PyTorch dataset.

  • samples_per_gpu (int) – Number of training samples on each GPU, i.e., batch size of each GPU.

  • workers_per_gpu (int) – How many subprocesses to use for data loading for each GPU.

  • num_gpus (int) – Number of GPUs. Only used in non-distributed training.

  • samples_per_epoch (int | None, Optional) – The number of samples per epoch. If equal to -1, using all samples in the datasets per epoch. Otherwise, using the samples_per_epoch samples. Default: None.

  • dist (bool) – Distributed training/test or not. Default: True.

  • shuffle (bool) – Whether to shuffle the data at every epoch. Default: True.

  • seed (int, Optional) – Seed to be used. Default: None.

  • persistent_workers (bool) – If True, the data loader will not shutdown the worker processes after a dataset has been consumed once. This allows to maintain the workers Dataset instances alive. This argument is only valid when PyTorch>=1.7.0. Default: False.

  • kwargs – any keyword argument to be used to initialize DataLoader

Returns

A PyTorch dataloader.

Return type

DataLoader

parsers

class mmtrack.datasets.parsers.CocoVID(*args: Any, **kwargs: Any)[source]

Inherit official COCO class in order to parse the annotations of bbox- related video tasks.

Parameters
  • annotation_file (str) – location of annotation file. Defaults to None.

  • load_img_as_vid (bool) – If True, convert image data to video data, which means each image is converted to a video. Defaults to False.

convert_img_to_vid(dataset)[source]

Convert image data to video data.

createIndex()[source]

Create index.

get_img_ids_from_ins_id(insId)[source]

Get image ids from given instance id.

Parameters

insId (int) – The given instance id.

Returns

Image ids of given instance id.

Return type

list[int]

get_img_ids_from_vid(vidId)[source]

Get image ids from given video id.

Parameters

vidId (int) – The given video id.

Returns

Image ids of given video id.

Return type

list[int]

get_ins_ids_from_vid(vidId)[source]

Get instance ids from given video id.

Parameters

vidId (int) – The given video id.

Returns

Instance ids of given video id.

Return type

list[int]

get_vid_ids(vidIds=[])[source]

Get video ids that satisfy given filter conditions.

Default return all video ids.

Parameters

vidIds (list[int]) – The given video ids. Defaults to [].

Returns

Video ids.

Return type

list[int]

load_vids(ids=[])[source]

Get video information of given video ids.

Default return all videos information.

Parameters

ids (list[int]) – The given video ids. Defaults to [].

Returns

List of video information.

Return type

list[dict]

pipelines

class mmtrack.datasets.pipelines.CheckPadMaskValidity(stride)[source]

Check the validity of data. Generally, it’s used in such case: The image padding masks generated in the image preprocess need to be downsampled, and then passed into Transformer model, like DETR. The computation in the subsequent Transformer model must make sure that the values of downsampled mask are not all zeros.

Parameters

stride (int) – the max stride of feature map.

class mmtrack.datasets.pipelines.ConcatSameTypeFrames(num_key_frames=1)[source]

Concat the frames of the same type. We divide all the frames into two types: ‘key’ frames and ‘reference’ frames.

The input list contains as least two dicts. We concat the first num_key_frames dicts to one dict, and the rest of dicts are concated to another dict.

In SOT field, ‘key’ denotes template image and ‘reference’ denotes search image.

Parameters

num_key_frames (int, optional) – the number of key frames. Defaults to 1.

concat_one_mode_results(results)[source]

Concatenate the results of the same mode.

class mmtrack.datasets.pipelines.ConcatVideoReferences[source]

Concat video references.

If the input list contains at least two dicts, concat the input list of dict to one dict from 2-nd dict of the input list.

Note: the ‘ConcatVideoReferences’ class will be deprecated in the future, please use ‘ConcatSameTypeFrames’ instead.

class mmtrack.datasets.pipelines.LoadDetections[source]

Load public detections from MOT benchmark.

Parameters

results (dict) – Result dict from mmtrack.CocoVideoDataset.

class mmtrack.datasets.pipelines.LoadMultiImagesFromFile(*args, **kwargs)[source]

Load multi images from file.

Please refer to mmdet.datasets.pipelines.loading.py:LoadImageFromFile for detailed docstring.

class mmtrack.datasets.pipelines.MatchInstances(skip_nomatch=True)[source]

Matching objects on a pair of images.

Parameters
  • skip_nomatch (bool, optional) – Whether skip the pair of image

  • training when there are no matched objects. Default (during) –

  • True. (to) –

class mmtrack.datasets.pipelines.PairSampling(frame_range=5, pos_prob=0.8, filter_template_img=False)[source]

Pair-style sampling. It’s used in `SiameseRPN++

<https://arxiv.org/abs/1812.11703.>`_.

Parameters
  • frame_range (List(int) | int) – the sampling range of search frames in the same video for template frame. Defaults to 5.

  • pos_prob (float, optional) – the probility of sampling positive sample pairs. Defaults to 0.8.

  • filter_template_img (bool, optional) – if False, the template image will be in the sampling search candidates, otherwise, it is exclude. Defaults to False.

prepare_data(video_info, sampled_inds, is_positive_pairs=False)[source]

Prepare sampled training data according to the sampled index.

Parameters
  • video_info (dict) – the video information. It contains the keys: [‘bboxes’,’bboxes_isvalid’,’filename’,’frame_ids’, ‘video_id’,’visible’].

  • sampled_inds (list[int]) – the sampled frame indexes.

  • is_positive_pairs (bool, optional) – whether it’s the positive pairs. Defaults to False.

Returns

contains the information of sampled data.

Return type

List[dict]

class mmtrack.datasets.pipelines.ReIDFormatBundle(*args, **kwargs)[source]

ReID formatting bundle.

It first concatenates common fields, then simplifies the pipeline of formatting common fields, including “img”, and “gt_label”. These fields are formatted as follows.

  • img: (1) transpose, (2) to tensor, (3) to DataContainer (stack=True)

  • gt_labels: (1) to tensor, (2) to DataContainer

reid_format_bundle(results)[source]

Transform and format gt_label fields in results.

Parameters

results (dict) – Result dict contains the data to convert.

Returns

The result dict contains the data that is formatted with ReID bundle.

Return type

dict

class mmtrack.datasets.pipelines.SeqBboxJitter(scale_jitter_factor, center_jitter_factor, crop_size_factor)[source]

Bounding box jitter augmentation. The jittered bboxes are used for subsequent image cropping, like SeqCropLikeStark.

Parameters
  • scale_jitter_factor (list[int | float]) – contains the factor of scale jitter.

  • center_jitter_factor (list[int | float]) – contains the factor of center jitter.

  • crop_size_factor (list[int | float]) – contains the ratio of crop size to bbox size.

class mmtrack.datasets.pipelines.SeqBlurAug(prob=[0.0, 0.2])[source]

Blur augmention for images.

Parameters

prob (list[float]) – The probability to perform blur augmention for each image. Defaults to [0.0, 0.2].

class mmtrack.datasets.pipelines.SeqBrightnessAug(jitter_range=0)[source]

Brightness augmention for images.

Parameters

jitter_range (float) – The range of brightness jitter. Defaults to 0..

class mmtrack.datasets.pipelines.SeqColorAug(prob=[1.0, 1.0], rgb_var=[[- 0.55919361, 0.98062831, - 0.41940627], [1.72091413, 0.19879334, - 1.82968581], [4.64467907, 4.73710203, 4.88324118]])[source]

Color augmention for images.

Parameters
  • prob (list[float]) – The probability to perform color augmention for each image. Defaults to [1.0, 1.0].

  • rgb_var (list[list]]) – The values of color augmentaion. Defaults to [[-0.55919361, 0.98062831, -0.41940627], [1.72091413, 0.19879334, -1.82968581], [4.64467907, 4.73710203, 4.88324118]].

class mmtrack.datasets.pipelines.SeqCropLikeSiamFC(context_amount=0.5, exemplar_size=127, crop_size=511)[source]

Crop images as SiamFC did.

The way of cropping an image is proposed in “Fully-Convolutional Siamese Networks for Object Tracking.” SiamFC.

Parameters
  • context_amount (float) – The context amount around a bounding box. Defaults to 0.5.

  • exemplar_size (int) – Exemplar size. Defaults to 127.

  • crop_size (int) – Crop size. Defaults to 511.

crop_like_SiamFC(image, bbox, context_amount=0.5, exemplar_size=127, crop_size=511)[source]

Crop an image as SiamFC did.

Parameters
  • image (ndarray) – of shape (H, W, 3).

  • bbox (ndarray) – of shape (4, ) in [x1, y1, x2, y2] format.

  • context_amount (float) – The context amount around a bounding box. Defaults to 0.5.

  • exemplar_size (int) – Exemplar size. Defaults to 127.

  • crop_size (int) – Crop size. Defaults to 511.

Returns

The cropped image of shape (crop_size, crop_size, 3).

Return type

ndarray

generate_box(image, gt_bbox, context_amount, exemplar_size)[source]

Generate box based on cropped image.

Parameters
  • image (ndarray) – The cropped image of shape (self.crop_size, self.crop_size, 3).

  • gt_bbox (ndarray) – of shape (4, ) in [x1, y1, x2, y2] format.

  • context_amount (float) – The context amount around a bounding box.

  • exemplar_size (int) – Exemplar size. Defaults to 127.

Returns

Generated box of shape (4, ) in [x1, y1, x2, y2] format.

Return type

ndarray

class mmtrack.datasets.pipelines.SeqCropLikeStark(crop_size_factor, output_size)[source]

Crop images as Stark did.

The way of cropping an image is proposed in “Learning Spatio-Temporal Transformer for Visual Tracking.” Stark.

Parameters
  • crop_size_factor (list[int | float]) – contains the ratio of crop size to bbox size.

  • output_size (list[int | float]) – contains the size of resized image (always square).

crop_like_stark(img, bbox, crop_size_factor, output_size)[source]

Crop an image as Stark did.

Parameters
  • image (ndarray) – of shape (H, W, 3).

  • bbox (ndarray) – of shape (4, ) in [x1, y1, x2, y2] format.

  • crop_size_factor (float) – the ratio of crop size to bbox size

  • output_size (int) – the size of resized image (always square).

Returns

the cropped image of shape

(crop_size, crop_size, 3).

resize_factor (float): the ratio of original image scale to cropped

image scale.

pdding_mask (ndarray): the padding mask caused by cropping.

Return type

img_crop_padded (ndarray)

generate_box(bbox_gt, bbox_cropped, resize_factor, output_size, normalize=False)[source]

Transform the box coordinates from the original image coordinates to the coordinates of the cropped image.

Parameters
  • bbox_gt (ndarray) – of shape (4, ) in [x1, y1, x2, y2] format.

  • bbox_cropped (ndarray) – of shape (4, ) in [x1, y1, x2, y2] format.

  • resize_factor (float) – the ratio of original image scale to cropped image scale.

  • output_size (float) – the size of output image.

  • normalize (bool) – whether to normalize the output box. Default to True.

Returns

generated box of shape (4, ) in [x1, y1, x2, y2] format.

Return type

ndarray

class mmtrack.datasets.pipelines.SeqDefaultFormatBundle(ref_prefix='ref')[source]

Sequence Default formatting bundle.

It simplifies the pipeline of formatting common fields, including “img”, “img_metas”, “proposals”, “gt_bboxes”, “gt_instance_ids”, “gt_match_indices”, “gt_bboxes_ignore”, “gt_labels”, “gt_masks”, “gt_semantic_seg” and ‘padding_mask’. These fields are formatted as follows.

  • img: (1) transpose, (2) to tensor, (3) to DataContainer (stack=True)

  • img_metas: (1) to DataContainer (cpu_only=True)

  • proposals: (1) to tensor, (2) to DataContainer

  • gt_bboxes: (1) to tensor, (2) to DataContainer

  • gt_instance_ids: (1) to tensor, (2) to DataContainer

  • gt_match_indices: (1) to tensor, (2) to DataContainer

  • gt_bboxes_ignore: (1) to tensor, (2) to DataContainer

  • gt_labels: (1) to tensor, (2) to DataContainer

  • gt_masks: (1) to DataContainer (cpu_only=True)

  • gt_semantic_seg: (1) unsqueeze dim-0 (2) to tensor, (3) to DataContainer (stack=True)

  • padding_mask: (1) to tensor, (2) to DataContainer

Parameters

ref_prefix (str) – The prefix of key added to the second dict of input list. Defaults to ‘ref’.

default_format_bundle(results)[source]

Transform and format common fields in results.

Parameters

results (dict) – Result dict contains the data to convert.

Returns

The result dict contains the data that is formatted with default bundle.

Return type

dict

class mmtrack.datasets.pipelines.SeqGrayAug(prob=0.0)[source]

Gray augmention for images.

Parameters

prob (float) – The probability to perform gray augmention. Defaults to 0..

class mmtrack.datasets.pipelines.SeqLoadAnnotations(with_track=False, *args, **kwargs)[source]

Sequence load annotations.

Please refer to mmdet.datasets.pipelines.loading.py:LoadAnnotations for detailed docstring.

Parameters

with_track (bool) – If True, load instance ids of bboxes.

class mmtrack.datasets.pipelines.SeqNormalize(*args, **kwargs)[source]

Normalize images.

Please refer to mmdet.datasets.pipelines.transforms.py:Normalize for detailed docstring.

class mmtrack.datasets.pipelines.SeqPad(*args, **kwargs)[source]

Pad images.

Please refer to mmdet.datasets.pipelines.transforms.py:Pad for detailed docstring.

class mmtrack.datasets.pipelines.SeqPhotoMetricDistortion(share_params=True, brightness_delta=32, contrast_range=(0.5, 1.5), saturation_range=(0.5, 1.5), hue_delta=18)[source]

Apply photometric distortion to image sequentially, every transformation is applied with a probability of 0.5. The position of random contrast is in second or second to last.

  1. random brightness

  2. random contrast (mode 0)

  3. convert color from BGR to HSV

  4. random saturation

  5. random hue

  6. convert color from HSV to BGR

  7. random contrast (mode 1)

  8. randomly swap channels

Parameters
  • brightness_delta (int) – delta of brightness.

  • contrast_range (tuple) – range of contrast.

  • saturation_range (tuple) – range of saturation.

  • hue_delta (int) – delta of hue.

get_params()[source]

Generate parameters.

photo_metric_distortion(results, params=None)[source]

Call function to perform photometric distortion on images.

Parameters
  • results (dict) – Result dict from loading pipeline.

  • params (dict, optional) – Pre-defined parameters. Default to None.

Returns

Result dict with images distorted.

Return type

dict

class mmtrack.datasets.pipelines.SeqRandomCrop(crop_size, allow_negative_crop=False, share_params=False, bbox_clip_border=False)[source]

Sequentially random crop the images & bboxes & masks.

The absolute crop_size is sampled based on crop_type and image_size, then the cropped results are generated.

Parameters
  • crop_size (tuple) – The relative ratio or absolute pixels of height and width.

  • allow_negative_crop (bool, optional) – Whether to allow a crop that does not contain any bbox area. Default False.

  • share_params (bool, optional) – Whether share the cropping parameters for the images.

  • bbox_clip_border (bool, optional) – Whether clip the objects outside the border of the image. Defaults to True.

Note

  • If the image is smaller than the absolute crop size, return the

    original image.

  • The keys for bboxes, labels and masks must be aligned. That is, gt_bboxes corresponds to gt_labels and gt_masks, and gt_bboxes_ignore corresponds to gt_labels_ignore and gt_masks_ignore.

  • If the crop does not contain any gt-bbox region and allow_negative_crop is set to False, skip this image.

get_offsets(img)[source]

Random generate the offsets for cropping.

random_crop(results, offsets=None)[source]

Call function to randomly crop images, bounding boxes, masks, semantic segmentation maps.

Parameters
  • results (dict) – Result dict from loading pipeline.

  • offsets (tuple, optional) – Pre-defined offsets for cropping. Default to None.

Returns

Randomly cropped results, ‘img_shape’ key in result dict is updated according to crop size.

Return type

dict

class mmtrack.datasets.pipelines.SeqRandomFlip(share_params, *args, **kwargs)[source]

Randomly flip for images.

Please refer to mmdet.datasets.pipelines.transforms.py:RandomFlip for detailed docstring.

Parameters

share_params (bool) – If True, share the flip parameters for all images. Defaults to True.

class mmtrack.datasets.pipelines.SeqResize(share_params=True, *args, **kwargs)[source]

Resize images.

Please refer to mmdet.datasets.pipelines.transforms.py:Resize for detailed docstring.

Parameters

share_params (bool) – If True, share the resize parameters for all images. Defaults to True.

class mmtrack.datasets.pipelines.SeqShiftScaleAug(target_size=[127, 255], shift=[4, 64], scale=[0.05, 0.18])[source]

Shift and rescale images and bounding boxes.

Parameters
  • target_size (list[int]) – list of int denoting exemplar size and search size, respectively. Defaults to [127, 255].

  • shift (list[int]) – list of int denoting the max shift offset. Defaults to [4, 64].

  • scale (list[float]) – list of float denoting the max rescale factor. Defaults to [0.05, 0.18].

class mmtrack.datasets.pipelines.ToList[source]

Use list to warp each value of the input dict.

Parameters

results (dict) – Result dict contains the data to convert.

Returns

Updated result dict contains the data to convert.

Return type

dict

class mmtrack.datasets.pipelines.TridentSampling(num_search_frames=1, num_template_frames=2, max_frame_range=[200], cls_pos_prob=0.5, train_cls_head=False, min_num_frames=20)[source]

Multitemplate-style sampling in a trident manner. It’s firstly used in STARK.

Parameters
  • num_search_frames (int, optional) – the number of search frames

  • num_template_frames (int, optional) – the number of template frames

  • max_frame_range (list[int], optional) – the max frame range of sampling a positive search image for the template image. Its length is equal to the number of extra templates, i.e., num_template_frames-1. Default length is 1.

  • cls_pos_prob (float, optional) – the probility of sampling positive samples in classification training.

  • train_cls_head (bool, optional) – whether to train classification head.

  • min_num_frames (int, optional) – the min number of frames to be sampled.

prepare_cls_data(video_info, video_info_another, sampled_inds)[source]

Prepare the sampled classification training data according to the sampled index.

Parameters
  • video_info (dict) – the video information. It contains the keys: [‘bboxes’,’bboxes_isvalid’,’filename’,’frame_ids’, ‘video_id’,’visible’].

  • video_info_another (dict) – the another video information. It’s only used to get negative samples in classification train. It contains the keys: [‘bboxes’,’bboxes_isvalid’,’filename’, ‘frame_ids’,’video_id’,’visible’].

  • sampled_inds (list[int]) – the sampled frame indexes.

Returns

contains the information of sampled data.

Return type

List[dict]

prepare_data(video_info, sampled_inds, with_label=False)[source]

Prepare sampled training data according to the sampled index.

Parameters
  • video_info (dict) – the video information. It contains the keys: [‘bboxes’,’bboxes_isvalid’,’filename’,’frame_ids’, ‘video_id’,’visible’].

  • sampled_inds (list[int]) – the sampled frame indexes.

  • with_label (bool, optional) – whether to recode labels in ann infos. Only set True in classification training. Defaults to False.

Returns

contains the information of sampled data.

Return type

List[dict]

random_sample_inds(video_visibility, num_samples=1, frame_range=None, allow_invisible=False, force_invisible=False)[source]

Random sampling a specific number of samples from the specified frame range of the video. It also considers the visibility of each frame.

Parameters
  • video_visibility (ndarray) – the visibility of each frame in the video.

  • num_samples (int, optional) – the number of samples. Defaults to 1.

  • frame_range (list | None, optional) – the frame range of sampling. Defaults to None.

  • allow_invisible (bool, optional) – whether to allow to get invisible samples. Defaults to False.

  • force_invisible (bool, optional) – whether to force to get invisible samples. Defaults to False.

Returns

The sampled frame indexes.

Return type

List

sampling_trident(video_visibility)[source]

Sampling multiple template images and one search images in one video.

Parameters

video_visibility (ndarray) – the visibility of each frame in the video.

Returns

the indexes of template and search images.

Return type

List

class mmtrack.datasets.pipelines.VideoCollect(keys, meta_keys=None, default_meta_keys=('filename', 'ori_filename', 'ori_shape', 'img_shape', 'pad_shape', 'scale_factor', 'flip', 'flip_direction', 'img_norm_cfg', 'frame_id', 'is_video_data'))[source]

Collect data from the loader relevant to the specific task.

Parameters
  • keys (Sequence[str]) – Keys of results to be collected in data.

  • meta_keys (Sequence[str]) – Meta keys to be converted to mmcv.DataContainer and collected in data[img_metas]. Defaults to None.

  • default_meta_keys (tuple) – Default meta keys. Defaults to (‘filename’, ‘ori_filename’, ‘ori_shape’, ‘img_shape’, ‘pad_shape’, ‘scale_factor’, ‘flip’, ‘flip_direction’, ‘img_norm_cfg’, ‘frame_id’, ‘is_video_data’).

samplers

class mmtrack.datasets.samplers.DistributedQuotaSampler(dataset, samples_per_epoch, num_replicas=None, rank=None, replacement=False, seed=0)[source]

Sampler that gets fixed number of samples per epoch.

It is especially useful in conjunction with torch.nn.parallel.DistributedDataParallel. In such case, each process can pass a DistributedSampler instance as a DataLoader sampler, and load a subset of the original dataset that is exclusive to it.

Note

Dataset is assumed to be of constant size.

Parameters
  • dataset – Dataset used for sampling.

  • samples_per_epoch (int) – The number of samples per epoch.

  • num_replicas (optional) – Number of processes participating in distributed training.

  • rank (optional) – Rank of the current process within num_replicas.

  • replacement (bool) – samples are drawn with replacement if True, Default: False.

  • seed (int, optional) – random seed used to shuffle the sampler if shuffle=True. This number should be identical across all processes in the distributed group. Default: 0.

class mmtrack.datasets.samplers.DistributedVideoSampler(dataset, num_replicas=None, rank=None, shuffle=False)[source]

Put videos to multi gpus during testing.

Parameters
  • dataset (Dataset) – Test dataset must have data_infos attribute. Each data_info in data_infos records information of one frame or one video (in SOT Dataset). If not SOT Dataset, each video must have one data_info that includes data_info[‘frame_id’] == 0.

  • num_replicas (int) – The number of gpus. Defaults to None.

  • rank (int) – Gpu rank id. Defaults to None.

  • shuffle (bool) – If True, shuffle the dataset. Defaults to False.

class mmtrack.datasets.samplers.SOTVideoSampler(dataset)[source]

Only used for sot testing on single gpu.

Parameters

dataset (Dataset) – Test dataset must have num_frames_per_video attribute. It records the frame number of each video.

mmtrack.models

mot

class mmtrack.models.mot.BaseMultiObjectTracker(init_cfg=None)[source]

Base class for multiple object tracking.

aug_test(imgs, img_metas, **kwargs)[source]

Test function with test time augmentation.

forward(img, img_metas, return_loss=True, **kwargs)[source]

Calls either forward_train() or forward_test() depending on whether return_loss is True.

Note this setting will change the expected inputs. When return_loss=True, img and img_meta are single-nested (i.e. Tensor and List[dict]), and when resturn_loss=False, img and img_meta should be double nested (i.e. List[Tensor], List[List[dict]]), with the outer list indicating test time augmentations.

forward_test(imgs, img_metas, **kwargs)[source]
Parameters
  • imgs (List[Tensor]) – the outer list indicates test-time augmentations and inner Tensor should have a shape NxCxHxW, which contains all images in the batch.

  • img_metas (List[List[dict]]) – the outer list indicates test-time augs (multiscale, flip, etc.) and the inner list indicates images in a batch.

abstract forward_train(imgs, img_metas, **kwargs)[source]
Parameters
  • img (list[Tensor]) – List of tensors of shape (1, C, H, W). Typically these should be mean centered and std scaled.

  • img_metas (list[dict]) – List of image info dict where each dict has: ‘img_shape’, ‘scale_factor’, ‘flip’, and may also contain ‘filename’, ‘ori_shape’, ‘pad_shape’, and ‘img_norm_cfg’. For details on the values of these keys, see mmdet.datasets.pipelines.Collect.

  • kwargs (keyword arguments) – Specific to concrete implementation.

freeze_module(module)[source]

Freeze module during training.

show_result(img, result, score_thr=0.0, thickness=1, font_scale=0.5, show=False, out_file=None, wait_time=0, backend='cv2', **kwargs)[source]

Visualize tracking results.

Parameters
  • img (str | ndarray) – Filename of loaded image.

  • result (dict) – Tracking result. - The value of key ‘track_bboxes’ is list with length num_classes, and each element in list is ndarray with shape(n, 6) in [id, tl_x, tl_y, br_x, br_y, score] format. - The value of key ‘det_bboxes’ is list with length num_classes, and each element in list is ndarray with shape(n, 5) in [tl_x, tl_y, br_x, br_y, score] format.

  • thickness (int, optional) – Thickness of lines. Defaults to 1.

  • font_scale (float, optional) – Font scales of texts. Defaults to 0.5.

  • show (bool, optional) – Whether show the visualizations on the fly. Defaults to False.

  • out_file (str | None, optional) – Output filename. Defaults to None.

  • backend (str, optional) – Backend to draw the bounding boxes, options are cv2 and plt. Defaults to ‘cv2’.

Returns

Visualized image.

Return type

ndarray

abstract simple_test(img, img_metas, **kwargs)[source]

Test function with a single scale.

train_step(data, optimizer)[source]

The iteration step during training.

This method defines an iteration step during training, except for the back propagation and optimizer updating, which are done in an optimizer hook. Note that in some complicated cases or models, the whole process including back propagation and optimizer updating is also defined in this method, such as GAN.

Parameters
  • data (dict) – The output of dataloader.

  • optimizer (torch.optim.Optimizer | dict) – The optimizer of runner is passed to train_step(). This argument is unused and reserved.

Returns

It should contain at least 3 keys: loss, log_vars, num_samples.

  • loss is a tensor for back propagation, which can be a

weighted sum of multiple losses. - log_vars contains all the variables to be sent to the logger. - num_samples indicates the batch size (when the model is DDP, it means the batch size on each GPU), which is used for averaging the logs.

Return type

dict

val_step(data, optimizer)[source]

The iteration step during validation.

This method shares the same signature as train_step(), but used during val epochs. Note that the evaluation after training epochs is not implemented with this method, but an evaluation hook.

property with_detector

whether the framework has a detector.

Type

bool

property with_motion

whether the framework has a motion model.

Type

bool

property with_reid

whether the framework has a reid model.

Type

bool

property with_track_head

whether the framework has a track_head.

Type

bool

property with_tracker

whether the framework has a tracker.

Type

bool

class mmtrack.models.mot.ByteTrack(detector=None, tracker=None, motion=None, init_cfg=None)[source]

ByteTrack: Multi-Object Tracking by Associating Every Detection Box.

This multi object tracker is the implementation of ByteTrack.

Parameters
  • detector (dict) – Configuration of detector. Defaults to None.

  • tracker (dict) – Configuration of tracker. Defaults to None.

  • motion (dict) – Configuration of motion. Defaults to None.

  • init_cfg (dict) – Configuration of initialization. Defaults to None.

forward_train(*args, **kwargs)[source]

Forward function during training.

simple_test(img, img_metas, rescale=False, **kwargs)[source]

Test without augmentations.

Parameters
  • img (Tensor) – of shape (N, C, H, W) encoding input images. Typically these should be mean centered and std scaled.

  • img_metas (list[dict]) – list of image info dict where each dict has: ‘img_shape’, ‘scale_factor’, ‘flip’, and may also contain ‘filename’, ‘ori_shape’, ‘pad_shape’, and ‘img_norm_cfg’.

  • rescale (bool, optional) – If False, then returned bboxes and masks will fit the scale of img, otherwise, returned bboxes and masks will fit the scale of original image shape. Defaults to False.

Returns

list(ndarray)]: The tracking results.

Return type

dict[str

class mmtrack.models.mot.DeepSORT(detector=None, reid=None, tracker=None, motion=None, pretrains=None, init_cfg=None)[source]

Simple online and realtime tracking with a deep association metric.

Details can be found at `DeepSORT<https://arxiv.org/abs/1703.07402>`_.

forward_train(*args, **kwargs)[source]

Forward function during training.

simple_test(img, img_metas, rescale=False, public_bboxes=None, **kwargs)[source]

Test without augmentations.

Parameters
  • img (Tensor) – of shape (N, C, H, W) encoding input images. Typically these should be mean centered and std scaled.

  • img_metas (list[dict]) – list of image info dict where each dict has: ‘img_shape’, ‘scale_factor’, ‘flip’, and may also contain ‘filename’, ‘ori_shape’, ‘pad_shape’, and ‘img_norm_cfg’.

  • rescale (bool, optional) – If False, then returned bboxes and masks will fit the scale of img, otherwise, returned bboxes and masks will fit the scale of original image shape. Defaults to False.

  • public_bboxes (list[Tensor], optional) – Public bounding boxes from the benchmark. Defaults to None.

Returns

list(ndarray)]: The tracking results.

Return type

dict[str

class mmtrack.models.mot.OCSORT(detector=None, tracker=None, motion=None, init_cfg=None)[source]

OCOSRT: Observation-Centric SORT: Rethinking SORT for Robust Multi-Object Tracking

This multi object tracker is the implementation of OC-SORT.

Parameters
  • detector (dict) – Configuration of detector. Defaults to None.

  • tracker (dict) – Configuration of tracker. Defaults to None.

  • motion (dict) – Configuration of motion. Defaults to None.

  • init_cfg (dict) – Configuration of initialization. Defaults to None.

forward_train(*args, **kwargs)[source]

Forward function during training.

simple_test(img, img_metas, rescale=False, **kwargs)[source]

Test without augmentations.

Parameters
  • img (Tensor) – of shape (N, C, H, W) encoding input images. Typically these should be mean centered and std scaled.

  • img_metas (list[dict]) – list of image info dict where each dict has: ‘img_shape’, ‘scale_factor’, ‘flip’, and may also contain ‘filename’, ‘ori_shape’, ‘pad_shape’, and ‘img_norm_cfg’.

  • rescale (bool, optional) – If False, then returned bboxes and masks will fit the scale of img, otherwise, returned bboxes and masks will fit the scale of original image shape. Defaults to False.

Returns

list(ndarray)]: The tracking results.

Return type

dict[str

class mmtrack.models.mot.QDTrack(detector=None, track_head=None, tracker=None, freeze_detector=False, *args, **kwargs)[source]

Quasi-Dense Similarity Learning for Multiple Object Tracking.

This multi object tracker is the implementation of QDTrack.

Parameters
  • detector (dict) – Configuration of detector. Defaults to None.

  • track_head (dict) – Configuration of track head. Defaults to None.

  • tracker (dict) – Configuration of tracker. Defaults to None.

  • freeze_detector (bool) – If True, freeze the detector weights. Defaults to False.

forward_train(img, img_metas, gt_bboxes, gt_labels, gt_match_indices, ref_img, ref_img_metas, ref_gt_bboxes, ref_gt_labels, gt_bboxes_ignore=None, gt_masks=None, ref_gt_bboxes_ignore=None, ref_gt_masks=None, **kwargs)[source]

Forward function during training.

Args:
img (Tensor): of shape (N, C, H, W) encoding input images.

Typically these should be mean centered and std scaled.

img_metas (list[dict]): list of image info dict where each dict

has: ‘img_shape’, ‘scale_factor’, ‘flip’, and may also contain ‘filename’, ‘ori_shape’, ‘pad_shape’, and ‘img_norm_cfg’.

gt_bboxes (list[Tensor]): Ground truth bboxes of the image,

each item has a shape (num_gts, 4).

gt_labels (list[Tensor]): Ground truth labels of all images.

each has a shape (num_gts,).

gt_match_indices (list(Tensor)): Mapping from gt_instance_ids to

ref_gt_instance_ids of the same tracklet in a pair of images.

ref_img (Tensor): of shape (N, C, H, W) encoding input reference

images. Typically these should be mean centered and std scaled.

ref_img_metas (list[dict]): list of reference image info dict where

each dict has: ‘img_shape’, ‘scale_factor’, ‘flip’, and may also contain ‘filename’, ‘ori_shape’, ‘pad_shape’, and ‘img_norm_cfg’.

ref_gt_bboxes (list[Tensor]): Ground truth bboxes of the

reference image, each item has a shape (num_gts, 4).

ref_gt_labels (list[Tensor]): Ground truth labels of all

reference images, each has a shape (num_gts,).

gt_masks (list[Tensor])Masks for each bbox, has a shape

(num_gts, h , w).

gt_bboxes_ignore (list[Tensor], None): Ground truth bboxes to be

ignored, each item has a shape (num_ignored_gts, 4).

ref_gt_bboxes_ignore (list[Tensor], None): Ground truth bboxes

of reference images to be ignored, each item has a shape (num_ignored_gts, 4).

ref_gt_masks (list[Tensor])Masks for each reference bbox,

has a shape (num_gts, h , w).

Returns

Tensor]: All losses.

Return type

dict[str

simple_test(img, img_metas, rescale=False)[source]

Test forward.

Args:
img (Tensor): of shape (N, C, H, W) encoding input images.

Typically these should be mean centered and std scaled.

img_metas (list[dict]): list of image info dict where each dict

has: ‘img_shape’, ‘scale_factor’, ‘flip’, and may also contain ‘filename’, ‘ori_shape’, ‘pad_shape’, and ‘img_norm_cfg’.

rescale (bool): whether to rescale the bboxes.

Returns

Tensor]: Track results.

Return type

dict[str

class mmtrack.models.mot.Tracktor(detector=None, reid=None, tracker=None, motion=None, pretrains=None, init_cfg=None)[source]

Tracking without bells and whistles.

Details can be found at `Tracktor<https://arxiv.org/abs/1903.05625>`_.

forward_train(*args, **kwargs)[source]

Forward function during training.

simple_test(img, img_metas, rescale=False, public_bboxes=None, **kwargs)[source]

Test without augmentations.

Parameters
  • img (Tensor) – of shape (N, C, H, W) encoding input images. Typically these should be mean centered and std scaled.

  • img_metas (list[dict]) – list of image info dict where each dict has: ‘img_shape’, ‘scale_factor’, ‘flip’, and may also contain ‘filename’, ‘ori_shape’, ‘pad_shape’, and ‘img_norm_cfg’.

  • rescale (bool, optional) – If False, then returned bboxes and masks will fit the scale of img, otherwise, returned bboxes and masks will fit the scale of original image shape. Defaults to False.

  • public_bboxes (list[Tensor], optional) – Public bounding boxes from the benchmark. Defaults to None.

Returns

list(ndarray)]: The tracking results.

Return type

dict[str

property with_cmc

whether the framework has a camera model compensation model.

Type

bool

property with_linear_motion

whether the framework has a linear motion model.

Type

bool

sot

class mmtrack.models.sot.MixFormer(backbone, head=None, init_cfg=None, frozen_modules=None, train_cfg=None, test_cfg=None)[source]

MixFormer: End-to-End Tracking with Iterative Mixed Attention.

This single object tracker is the implementation of `MixFormer<https://arxiv.org/abs/2203.11082>`_.

forward_train(imgs, img_metas, search_img, search_img_metas, **kwargs)[source]

forward of training.

Parameters
  • img (Tensor) – template images of shape (N, num_templates, C, H, W) Typically, there are 2 template images, and H and W are both equal to 128.

  • img_metas (list[dict]) – list of image information dict where each dict has: ‘image_shape’, ‘scale_factor’, ‘flip’, and may also contain ‘filename’, ‘ori_shape’, ‘pad_shape’, and ‘img_norm_cfg’. For details on the values of these keys see mmtrack/datasets/pipelines/formatting.py:VideoCollect.

  • search_img (Tensor) – of shape (N, 1, C, H, W) encoding input search images. 1 denotes there is only one search image for each exemplar image. Typically H and W are both equal to 320.

  • search_img_metas (list[list[dict]]) – The second list only has one element. The first list contains search image information dict where each dict has: ‘img_shape’, ‘scale_factor’, ‘flip’, and may also contain ‘filename’, ‘ori_shape’, ‘pad_shape’ and ‘img_norm_cfg’. For details on the values of there keys see mmtrack/datasets/pipelines/formatting.py:VideoCollect.

  • gt_bboxes (list[Tensor]) – Ground truth bboxes for template images with shape (N, 4) in [tl_x, tl_y, br_x, br_y] format.

  • padding_mask (Tensor) – padding mask of template images. It’s of shape (N, num_templates, H, W). Typically, there are 2 padding masks of tehmplate images, and H and W are both equal to that of template images.

  • search_gt_bboxes (list[Tensor]) – Ground truth bboxes for search images with shape (N, 5) in [0., tl_x, tl_y, br_x, br_y] format.

  • search_padding_mask (Tensor) – padding mask of search images. Its of shape (N, 1, H, W). There are 1 padding masks of search image, and H and W are both equal to that of search image.

  • search_gt_labels (list[Tensor], optional) – Ground truth labels for search images with shape (N, 2).

Returns

a dictionary of loss components.

Return type

dict[str, Tensor]

init(img, bbox)[source]

Initialize the single object tracker in the first frame.

Parameters
  • img – (Tensor): input image of shape (1, C, H, W).

  • bbox (list | Tensor) – in [cx, cy, w, h] format.

track(img, bbox)[source]

Track the box bbox of previous frame to current frame img

Parameters
  • img (Tensor) – of shape (1, C, H, W).

  • bbox (list | Tensor) – The bbox in previous frame. The shape of the bbox is (4, ) in [x, y, w, h] format.

update_template(img, bbox, conf_score)[source]

Update the dynamic templates.

Parameters
  • img (Tensor) – of shape (1, C, H, W).

  • bbox (list | ndarray) – in [cx, cy, w, h] format.

  • conf_score (float) – the confidence score of the predicted bbox.

class mmtrack.models.sot.SiamRPN(backbone, neck=None, head=None, pretrains=None, init_cfg=None, frozen_modules=None, train_cfg=None, test_cfg=None)[source]

SiamRPN++: Evolution of Siamese Visual Tracking with Very Deep Networks.

This single object tracker is the implementation of SiamRPN++.

Extract the features of search images.

Parameters

x_img (Tensor) – of shape (N, C, H, W) encoding input search images. Typically H and W equal to 255.

Returns

Multi level feature map of search images.

Return type

tuple(Tensor)

forward_template(z_img)[source]

Extract the features of exemplar images.

Parameters

z_img (Tensor) – of shape (N, C, H, W) encoding input exemplar images. Typically H and W equal to 127.

Returns

Multi level feature map of exemplar images.

Return type

tuple(Tensor)

forward_train(img, img_metas, gt_bboxes, search_img, search_img_metas, search_gt_bboxes, is_positive_pairs, **kwargs)[source]
Parameters
  • img (Tensor) – of shape (N, C, H, W) encoding input exemplar images. Typically H and W equal to 127.

  • img_metas (list[dict]) – list of image information dict where each dict has: ‘img_shape’, ‘scale_factor’, ‘flip’, and may also contain ‘filename’, ‘ori_shape’, ‘pad_shape’, and ‘img_norm_cfg’. For details on the values of these keys see mmtrack/datasets/pipelines/formatting.py:VideoCollect.

  • gt_bboxes (list[Tensor]) – Ground truth bboxes for each exemplar image with shape (1, 4) in [tl_x, tl_y, br_x, br_y] format.

  • search_img (Tensor) – of shape (N, 1, C, H, W) encoding input search images. 1 denotes there is only one search image for each exemplar image. Typically H and W equal to 255.

  • search_img_metas (list[list[dict]]) – The second list only has one element. The first list contains search image information dict where each dict has: ‘img_shape’, ‘scale_factor’, ‘flip’, and may also contain ‘filename’, ‘ori_shape’, ‘pad_shape’, and ‘img_norm_cfg’. For details on the values of these keys see mmtrack/datasets/pipelines/formatting.py:VideoCollect.

  • search_gt_bboxes (list[Tensor]) – Ground truth bboxes for each search image with shape (1, 5) in [0.0, tl_x, tl_y, br_x, br_y] format.

  • is_positive_pairs (list[bool]) – list of bool denoting whether each exemplar image and corresponding search image is positive pair.

Returns

a dictionary of loss components.

Return type

dict[str, Tensor]

get_cropped_img(img, center_xy, target_size, crop_size, avg_channel)[source]

Crop image.

Only used during testing.

This function mainly contains two steps: 1. Crop img based on center center_xy and size crop_size. If the cropped image is out of boundary of img, use avg_channel to pad. 2. Resize the cropped image to target_size.

Parameters
  • img (Tensor) – of shape (1, C, H, W) encoding original input image.

  • center_xy (Tensor) – of shape (2, ) denoting the center point for cropping image.

  • target_size (int) – The output size of cropped image.

  • crop_size (Tensor) – The size for cropping image.

  • avg_channel (Tensor) – of shape (3, ) denoting the padding values.

Returns

of shape (1, C, target_size, target_size) encoding the resized cropped image.

Return type

Tensor

init(img, bbox)[source]

Initialize the single object tracker in the first frame.

Parameters
  • img (Tensor) – of shape (1, C, H, W) encoding original input image.

  • bbox (Tensor) – The given instance bbox of first frame that need be tracked in the following frames. The shape of the box is (4, ) with [cx, cy, w, h] format.

Returns

z_feat is a tuple[Tensor] that contains the multi level feature maps of exemplar image, avg_channel is Tensor with shape (3, ), and denotes the padding values.

Return type

tuple(z_feat, avg_channel)

init_weights()[source]

Initialize the weights of modules in single object tracker.

simple_test(img, img_metas, gt_bboxes, **kwargs)[source]

Test without augmentation.

Parameters
  • img (Tensor) – of shape (1, C, H, W) encoding input image.

  • img_metas (list[dict]) – list of image information dict where each dict has: ‘img_shape’, ‘scale_factor’, ‘flip’, and may also contain ‘filename’, ‘ori_shape’, ‘pad_shape’, and ‘img_norm_cfg’. For details on the values of these keys see mmtrack/datasets/pipelines/formatting.py:VideoCollect.

  • gt_bboxes (list[Tensor]) – list of ground truth bboxes for each image with shape (1, 4) in [tl_x, tl_y, br_x, br_y] format or shape (1, 8) in [x1, y1, x2, y2, x3, y3, x4, y4].

Returns

ndarray]: The tracking results.

Return type

dict[str

simple_test_ope(img, frame_id, gt_bboxes)[source]

Test using OPE test mode.

Parameters
  • img (Tensor) – of shape (1, C, H, W) encoding input image.

  • frame_id (int) – the id of current frame in the video.

  • gt_bboxes (list[Tensor]) – list of ground truth bboxes for each image with shape (1, 4) in [tl_x, tl_y, br_x, br_y] format or shape (1, 8) in [x1, y1, x2, y2, x3, y3, x4, y4].

Returns

in [tl_x, tl_y, br_x, br_y] format. best_score (Tensor): the tracking bbox confidence in range [0,1],

and the score of initial frame is -1.

Return type

bbox_pred (Tensor)

simple_test_vot(img, frame_id, gt_bboxes, img_metas=None)[source]

Test using VOT test mode.

Parameters
  • img (Tensor) – of shape (1, C, H, W) encoding input image.

  • frame_id (int) – the id of current frame in the video.

  • gt_bboxes (list[Tensor]) – list of ground truth bboxes for each image with shape (1, 4) in [tl_x, tl_y, br_x, br_y] format or shape (1, 8) in [x1, y1, x2, y2, x3, y3, x4, y4].

  • img_metas (list[dict]) – list of image information dict where each dict has: ‘img_shape’, ‘scale_factor’, ‘flip’, and may also contain ‘filename’, ‘ori_shape’, ‘pad_shape’, and ‘img_norm_cfg’. For details on the values of these keys see mmtrack/datasets/pipelines/formatting.py:VideoCollect.

Returns

in [tl_x, tl_y, br_x, br_y] format. best_score (Tensor): the tracking bbox confidence in range [0,1],

and the score of initial frame is -1.

Return type

bbox_pred (Tensor)

track(img, bbox, z_feat, avg_channel)[source]

Track the box bbox of previous frame to current frame img.

Parameters
  • img (Tensor) – of shape (1, C, H, W) encoding original input image.

  • bbox (Tensor) – The bbox in previous frame. The shape of the box is (4, ) in [cx, cy, w, h] format.

  • z_feat (tuple[Tensor]) – The multi level feature maps of exemplar image in the first frame.

  • avg_channel (Tensor) – of shape (3, ) denoting the padding values.

Returns

best_score is a Tensor denoting the score of best_bbox, best_bbox is a Tensor of shape (4, ) in [cx, cy, w, h] format, and denotes the best tracked bbox in current frame.

Return type

tuple(best_score, best_bbox)

class mmtrack.models.sot.Stark(backbone, neck=None, head=None, init_cfg=None, frozen_modules=None, train_cfg=None, test_cfg=None)[source]

STARK: Learning Spatio-Temporal Transformer for Visual Tracking.

This single object tracker is the implementation of STARk.

Parameters
  • backbone (dict) – the configuration of backbone network.

  • neck (dict, optional) – the configuration of neck network. Defaults to None.

  • head (dict, optional) – the configuration of head network. Defaults to None.

  • init_cfg (dict, optional) – the configuration of initialization. Defaults to None.

  • frozen_modules (str | list | tuple, optional) – the names of frozen modules. Defaults to None.

  • train_cfg (dict, optional) – the configuratioin of train. Defaults to None.

  • test_cfg (dict, optional) – the configuration of test. Defaults to None.

extract_feat(img)[source]

Extract the features of the input image.

Parameters

img (Tensor) – image of shape (N, C, H, W).

Returns

the multi-level feature maps, and each of them is

of shape (N, C, H // stride, W // stride).

Return type

tuple(Tensor)

forward_train(img, img_metas, search_img, search_img_metas, gt_bboxes, padding_mask, search_gt_bboxes, search_padding_mask, search_gt_labels=None, **kwargs)[source]

forward of training.

Parameters
  • img (Tensor) – template images of shape (N, num_templates, C, H, W). Typically, there are 2 template images, and H and W are both equal to 128.

  • img_metas (list[dict]) – list of image information dict where each dict has: ‘img_shape’, ‘scale_factor’, ‘flip’, and may also contain ‘filename’, ‘ori_shape’, ‘pad_shape’, and ‘img_norm_cfg’. For details on the values of these keys see mmtrack/datasets/pipelines/formatting.py:VideoCollect.

  • search_img (Tensor) – of shape (N, 1, C, H, W) encoding input search images. 1 denotes there is only one search image for each template image. Typically H and W are both equal to 320.

  • search_img_metas (list[list[dict]]) – The second list only has one element. The first list contains search image information dict where each dict has: ‘img_shape’, ‘scale_factor’, ‘flip’, and may also contain ‘filename’, ‘ori_shape’, ‘pad_shape’, and ‘img_norm_cfg’. For details on the values of these keys see mmtrack/datasets/pipelines/formatting.py:VideoCollect.

  • gt_bboxes (list[Tensor]) – Ground truth bboxes for template images with shape (N, 4) in [tl_x, tl_y, br_x, br_y] format.

  • padding_mask (Tensor) – padding mask of template images. It’s of shape (N, num_templates, H, W). Typically, there are 2 padding masks of template images, and H and W are both equal to that of template images.

  • search_gt_bboxes (list[Tensor]) – Ground truth bboxes for search images with shape (N, 5) in [0., tl_x, tl_y, br_x, br_y] format.

  • search_padding_mask (Tensor) – padding mask of search images. Its of shape (N, 1, H, W). There are 1 padding masks of search image, and H and W are both equal to that of search image.

  • search_gt_labels (list[Tensor], optional) – Ground truth labels for search images with shape (N, 2).

Returns

a dictionary of loss components.

Return type

dict[str, Tensor]

get_cropped_img(img, target_bbox, search_area_factor, output_size)[source]

Crop Image Only used during testing This function mainly contains two steps: 1. Crop img based on target_bbox and search_area_factor. If the cropped image/mask is out of boundary of img, use 0 to pad. 2. Resize the cropped image/mask to output_size.

Parameters
  • img (Tensor) – of shape (1, C, H, W)

  • target_bbox (list | ndarray) – in [cx, cy, w, h] format

  • search_area_factor (float) – Ratio of crop size to target size

  • output_size (float) – the size of output cropped image (always square).

Returns

of shape (1, C, output_size, output_size) resize_factor (float): the ratio of original image scale to cropped

image scale.

pdding_mask (Tensor): the padding mask caused by cropping. It’s

of shape (1, output_size, output_size).

Return type

img_crop_padded (Tensor)

init(img, bbox)[source]

Initialize the single object tracker in the first frame.

Parameters
  • img (Tensor) – input image of shape (1, C, H, W).

  • bbox (list | Tensor) – in [cx, cy, w, h] format.

init_weights()[source]

Initialize the weights of modules in single object tracker.

mapping_bbox_back(pred_bboxes, prev_bbox, resize_factor)[source]

Mapping the prediction bboxes from resized cropped image to original image. The coordinate origins of them are both the top left corner.

Parameters
  • pred_bboxes (Tensor) – the predicted bbox of shape (B, Nq, 4), in [tl_x, tl_y, br_x, br_y] format. The coordinates are based in the resized cropped image.

  • prev_bbox (Tensor) – the previous bbox of shape (B, 4), in [cx, cy, w, h] format. The coordinates are based in the original image.

  • resize_factor (float) – the ratio of original image scale to cropped image scale.

Returns

in [tl_x, tl_y, br_x, br_y] format.

Return type

(Tensor)

simple_test(img, img_metas, gt_bboxes, **kwargs)[source]

Test without augmentation.

Parameters
  • img (Tensor) – input image of shape (1, C, H, W).

  • img_metas (list[dict]) – list of image information dict where each dict has: ‘img_shape’, ‘scale_factor’, ‘flip’, and may also contain ‘filename’, ‘ori_shape’, ‘pad_shape’, and ‘img_norm_cfg’. For details on the values of these keys see mmtrack/datasets/pipelines/formatting.py:VideoCollect.

  • gt_bboxes (list[Tensor]) – list of ground truth bboxes for each image with shape (1, 4) in [tl_x, tl_y, br_x, br_y] format.

Returns

ndarray): the tracking results.

Return type

dict(str

track(img, bbox)[source]

Track the box bbox of previous frame to current frame img.

Parameters
  • img (Tensor) – of shape (1, C, H, W).

  • bbox (list | Tensor) – The bbox in previous frame. The shape of the bbox is (4, ) in [x, y, w, h] format.

Returns:

update_template(img, bbox, conf_score)[source]

Update the dymanic templates.

Parameters
  • img (Tensor) – of shape (1, C, H, W).

  • bbox (list | ndarray) – in [cx, cy, w, h] format.

  • conf_score (float) – the confidence score of the predicted bbox.

vid

class mmtrack.models.vid.BaseVideoDetector(init_cfg)[source]

Base class for video object detector.

Parameters

init_cfg (dict or list[dict], optional) – Initialization config dict.

aug_test(imgs, img_metas, **kwargs)[source]

Test function with test time augmentation.

forward(img, img_metas, ref_img=None, ref_img_metas=None, return_loss=True, **kwargs)[source]

Calls either forward_train() or forward_test() depending on whether return_loss is True.

Note this setting will change the expected inputs. When return_loss=True, img and img_meta are single-nested (i.e. Tensor and List[dict]), and when resturn_loss=False, img and img_meta should be double nested (i.e. List[Tensor], List[List[dict]]), with the outer list indicating test time augmentations.

forward_test(imgs, img_metas, ref_img=None, ref_img_metas=None, **kwargs)[source]
Parameters
  • imgs (List[Tensor]) – the outer list indicates test-time augmentations and inner Tensor should have a shape NxCxHxW, which contains all images in the batch.

  • img_metas (List[List[dict]]) – the outer list indicates test-time augs (multiscale, flip, etc.) and the inner list indicates images in a batch.

  • ref_img (list[Tensor] | None) – The list only contains one Tensor of shape (1, N, C, H, W) encoding input reference images. Typically these should be mean centered and std scaled. N denotes the number for reference images. There may be no reference images in some cases.

  • ref_img_metas (list[list[list[dict]]] | None) – The first and second list only has one element. The third list contains image information dict where each dict has: ‘img_shape’, ‘scale_factor’, ‘flip’, and may also contain ‘filename’, ‘ori_shape’, ‘pad_shape’, and ‘img_norm_cfg’. For details on the values of these keys see mmtrack/datasets/pipelines/formatting.py:VideoCollect. There may be no reference images in some cases.

abstract forward_train(imgs, img_metas, ref_img=None, ref_img_metas=None, **kwargs)[source]
Parameters
  • img (Tensor) – of shape (N, C, H, W) encoding input images. Typically these should be mean centered and std scaled.

  • img_metas (list[dict]) – list of image info dict where each dict has: ‘img_shape’, ‘scale_factor’, ‘flip’, and may also contain ‘filename’, ‘ori_shape’, ‘pad_shape’, and ‘img_norm_cfg’. For details on the values of these keys see mmtrack/datasets/pipelines/formatting.py:VideoCollect.

  • ref_img (Tensor) – of shape (N, R, C, H, W) encoding input images. Typically these should be mean centered and std scaled. R denotes there is #R reference images for each input image.

  • ref_img_metas (list[list[dict]]) – The first list only has one element. The second list contains reference image information dict where each dict has: ‘img_shape’, ‘scale_factor’, ‘flip’, and may also contain ‘filename’, ‘ori_shape’, ‘pad_shape’, and ‘img_norm_cfg’. For details on the values of these keys see mmtrack/datasets/pipelines/formatting.py:VideoCollect.

freeze_module(module)[source]

Freeze module during training.

show_result(img, result, score_thr=0.3, bbox_color='green', text_color='green', thickness=1, font_scale=0.5, win_name='', show=False, wait_time=0, out_file=None)[source]

Draw result over img.

Parameters
  • img (str or Tensor) – The image to be displayed.

  • result (dict) – The results to draw over img det_bboxes or (det_bboxes, det_masks). The value of key ‘det_bboxes’ is list with length num_classes, and each element in list is ndarray with shape(n, 5) in [tl_x, tl_y, br_x, br_y, score] format.

  • score_thr (float, optional) – Minimum score of bboxes to be shown. Default: 0.3.

  • bbox_color (str or tuple or Color) – Color of bbox lines.

  • text_color (str or tuple or Color) – Color of texts.

  • thickness (int) – Thickness of lines.

  • font_scale (float) – Font scales of texts.

  • win_name (str) – The window name.

  • wait_time (int) – Value of waitKey param. Default: 0.

  • show (bool) – Whether to show the image. Default: False.

  • out_file (str or None) – The filename to write the image. Default: None.

Returns

Only if not show or out_file

Return type

img (Tensor)

train_step(data, optimizer)[source]

The iteration step during training.

This method defines an iteration step during training, except for the back propagation and optimizer updating, which are done in an optimizer hook. Note that in some complicated cases or models, the whole process including back propagation and optimizer updating is also defined in this method, such as GAN.

Parameters
  • data (dict) – The output of dataloader.

  • optimizer (torch.optim.Optimizer | dict) – The optimizer of runner is passed to train_step(). This argument is unused and reserved.

Returns

It should contain at least 3 keys: loss, log_vars, num_samples.

  • loss is a tensor for back propagation, which can be a weighted sum of multiple losses.

  • log_vars contains all the variables to be sent to the

logger. - num_samples indicates the batch size (when the model is DDP, it means the batch size on each GPU), which is used for averaging the logs.

Return type

dict

val_step(data, optimizer)[source]

The iteration step during validation.

This method shares the same signature as train_step(), but used during val epochs. Note that the evaluation after training epochs is not implemented with this method, but an evaluation hook.

property with_aggregator

whether the framework has a aggregator

Type

bool

property with_detector

whether the framework has a detector

Type

bool

property with_motion

whether the framework has a motion model

Type

bool

class mmtrack.models.vid.DFF(detector, motion, pretrains=None, init_cfg=None, frozen_modules=None, train_cfg=None, test_cfg=None)[source]

Deep Feature Flow for Video Recognition.

This video object detector is the implementation of DFF.

aug_test(imgs, img_metas, **kwargs)[source]

Test function with test time augmentation.

extract_feats(img, img_metas)[source]

Extract features for img during testing.

Parameters
  • img (Tensor) – of shape (1, C, H, W) encoding input image. Typically these should be mean centered and std scaled.

  • img_metas (list[dict]) – list of image information dict where each dict has: ‘img_shape’, ‘scale_factor’, ‘flip’, and may also contain ‘filename’, ‘ori_shape’, ‘pad_shape’, and ‘img_norm_cfg’. For details on the values of these keys see mmtrack/datasets/pipelines/formatting.py:VideoCollect.

Returns

Multi level feature maps of img.

Return type

list[Tensor]

forward_train(img, img_metas, gt_bboxes, gt_labels, ref_img, ref_img_metas, ref_gt_bboxes, ref_gt_labels, gt_instance_ids=None, gt_bboxes_ignore=None, gt_masks=None, proposals=None, ref_gt_instance_ids=None, ref_gt_bboxes_ignore=None, ref_gt_masks=None, ref_proposals=None, **kwargs)[source]
Parameters
  • img (Tensor) – of shape (N, C, H, W) encoding input images. Typically these should be mean centered and std scaled.

  • img_metas (list[dict]) – list of image info dict where each dict has: ‘img_shape’, ‘scale_factor’, ‘flip’, and may also contain ‘filename’, ‘ori_shape’, ‘pad_shape’, and ‘img_norm_cfg’. For details on the values of these keys see mmtrack/datasets/pipelines/formatting.py:VideoCollect.

  • gt_bboxes (list[Tensor]) – Ground truth bboxes for each image with shape (num_gts, 4) in [tl_x, tl_y, br_x, br_y] format.

  • gt_labels (list[Tensor]) – class indices corresponding to each box.

  • ref_img (Tensor) – of shape (N, 1, C, H, W) encoding input images. Typically these should be mean centered and std scaled. 1 denotes there is only one reference image for each input image.

  • ref_img_metas (list[list[dict]]) – The first list only has one element. The second list contains reference image information dict where each dict has: ‘img_shape’, ‘scale_factor’, ‘flip’, and may also contain ‘filename’, ‘ori_shape’, ‘pad_shape’, and ‘img_norm_cfg’. For details on the values of these keys see mmtrack/datasets/pipelines/formatting.py:VideoCollect.

  • ref_gt_bboxes (list[Tensor]) – The list only has one Tensor. The Tensor contains ground truth bboxes for each reference image with shape (num_all_ref_gts, 5) in [ref_img_id, tl_x, tl_y, br_x, br_y] format. The ref_img_id start from 0, and denotes the id of reference image for each key image.

  • ref_gt_labels (list[Tensor]) – The list only has one Tensor. The Tensor contains class indices corresponding to each reference box with shape (num_all_ref_gts, 2) in [ref_img_id, class_indice].

  • gt_instance_ids (None | list[Tensor]) – specify the instance id for each ground truth bbox.

  • gt_bboxes_ignore (None | list[Tensor]) – specify which bounding boxes can be ignored when computing the loss.

  • gt_masks (None | Tensor) – true segmentation masks for each box used if the architecture supports a segmentation task.

  • proposals (None | Tensor) – override rpn proposals with custom proposals. Use when with_rpn is False.

  • ref_gt_instance_ids (None | list[Tensor]) – specify the instance id for each ground truth bboxes of reference images.

  • ref_gt_bboxes_ignore (None | list[Tensor]) – specify which bounding boxes of reference images can be ignored when computing the loss.

  • ref_gt_masks (None | Tensor) – True segmentation masks for each box of reference image used if the architecture supports a segmentation task.

  • ref_proposals (None | Tensor) – override rpn proposals with custom proposals of reference images. Use when with_rpn is False.

Returns

a dictionary of loss components

Return type

dict[str, Tensor]

simple_test(img, img_metas, ref_img=None, ref_img_metas=None, proposals=None, rescale=False)[source]

Test without augmentation.

Parameters
  • img (Tensor) – of shape (1, C, H, W) encoding input image. Typically these should be mean centered and std scaled.

  • img_metas (list[dict]) – list of image information dict where each dict has: ‘img_shape’, ‘scale_factor’, ‘flip’, and may also contain ‘filename’, ‘ori_shape’, ‘pad_shape’, and ‘img_norm_cfg’. For details on the values of these keys see mmtrack/datasets/pipelines/formatting.py:VideoCollect.

  • ref_img (None) – Not used in DFF. Only for unifying API interface.

  • ref_img_metas (None) – Not used in DFF. Only for unifying API interface.

  • proposals (None | Tensor) – Override rpn proposals with custom proposals. Use when with_rpn is False. Defaults to None.

  • rescale (bool) – If False, then returned bboxes and masks will fit the scale of img, otherwise, returned bboxes and masks will fit the scale of original image shape. Defaults to False.

Returns

list(ndarray)]: The detection results.

Return type

dict[str

class mmtrack.models.vid.FGFA(detector, motion, aggregator, pretrains=None, init_cfg=None, frozen_modules=None, train_cfg=None, test_cfg=None)[source]

Flow-Guided Feature Aggregation for Video Object Detection.

This video object detector is the implementation of FGFA.

aug_test(imgs, img_metas, **kwargs)[source]

Test function with test time augmentation.

extract_feats(img, img_metas, ref_img, ref_img_metas)[source]

Extract features for img during testing.

Parameters
  • img (Tensor) – of shape (1, C, H, W) encoding input image. Typically these should be mean centered and std scaled.

  • img_metas (list[dict]) – list of image information dict where each dict has: ‘img_shape’, ‘scale_factor’, ‘flip’, and may also contain ‘filename’, ‘ori_shape’, ‘pad_shape’, and ‘img_norm_cfg’. For details on the values of these keys see mmtrack/datasets/pipelines/formatting.py:VideoCollect.

  • ref_img (Tensor | None) – of shape (1, N, C, H, W) encoding input reference images. Typically these should be mean centered and std scaled. N denotes the number of reference images. There may be no reference images in some cases.

  • ref_img_metas (list[list[dict]] | None) – The first list only has one element. The second list contains image information dict where each dict has: ‘img_shape’, ‘scale_factor’, ‘flip’, and may also contain ‘filename’, ‘ori_shape’, ‘pad_shape’, and ‘img_norm_cfg’. For details on the values of these keys see mmtrack/datasets/pipelines/formatting.py:VideoCollect. There may be no reference images in some cases.

Returns

Multi level feature maps of img.

Return type

list[Tensor]

forward_train(img, img_metas, gt_bboxes, gt_labels, ref_img, ref_img_metas, ref_gt_bboxes, ref_gt_labels, gt_instance_ids=None, gt_bboxes_ignore=None, gt_masks=None, proposals=None, ref_gt_instance_ids=None, ref_gt_bboxes_ignore=None, ref_gt_masks=None, ref_proposals=None, **kwargs)[source]
Parameters
  • img (Tensor) – of shape (N, C, H, W) encoding input images. Typically these should be mean centered and std scaled.

  • img_metas (list[dict]) – list of image info dict where each dict has: ‘img_shape’, ‘scale_factor’, ‘flip’, and may also contain ‘filename’, ‘ori_shape’, ‘pad_shape’, and ‘img_norm_cfg’. For details on the values of these keys see mmtrack/datasets/pipelines/formatting.py:VideoCollect.

  • gt_bboxes (list[Tensor]) – Ground truth bboxes for each image with shape (num_gts, 4) in [tl_x, tl_y, br_x, br_y] format.

  • gt_labels (list[Tensor]) – class indices corresponding to each box.

  • ref_img (Tensor) – of shape (N, 2, C, H, W) encoding input images. Typically these should be mean centered and std scaled. 2 denotes there is two reference images for each input image.

  • ref_img_metas (list[list[dict]]) – The first list only has one element. The second list contains reference image information dict where each dict has: ‘img_shape’, ‘scale_factor’, ‘flip’, and may also contain ‘filename’, ‘ori_shape’, ‘pad_shape’, and ‘img_norm_cfg’. For details on the values of these keys see mmtrack/datasets/pipelines/formatting.py:VideoCollect.

  • ref_gt_bboxes (list[Tensor]) – The list only has one Tensor. The Tensor contains ground truth bboxes for each reference image with shape (num_all_ref_gts, 5) in [ref_img_id, tl_x, tl_y, br_x, br_y] format. The ref_img_id start from 0, and denotes the id of reference image for each key image.

  • ref_gt_labels (list[Tensor]) – The list only has one Tensor. The Tensor contains class indices corresponding to each reference box with shape (num_all_ref_gts, 2) in [ref_img_id, class_indice].

  • gt_instance_ids (None | list[Tensor]) – specify the instance id for each ground truth bbox.

  • gt_bboxes_ignore (None | list[Tensor]) – specify which bounding boxes can be ignored when computing the loss.

  • gt_masks (None | Tensor) – true segmentation masks for each box used if the architecture supports a segmentation task.

  • proposals (None | Tensor) – override rpn proposals with custom proposals. Use when with_rpn is False.

  • ref_gt_instance_ids (None | list[Tensor]) – specify the instance id for each ground truth bboxes of reference images.

  • ref_gt_bboxes_ignore (None | list[Tensor]) – specify which bounding boxes of reference images can be ignored when computing the loss.

  • ref_gt_masks (None | Tensor) – True segmentation masks for each box of reference image used if the architecture supports a segmentation task.

  • ref_proposals (None | Tensor) – override rpn proposals with custom proposals of reference images. Use when with_rpn is False.

Returns

a dictionary of loss components

Return type

dict[str, Tensor]

simple_test(img, img_metas, ref_img=None, ref_img_metas=None, proposals=None, rescale=False)[source]

Test without augmentation.

Parameters
  • img (Tensor) – of shape (1, C, H, W) encoding input image. Typically these should be mean centered and std scaled.

  • img_metas (list[dict]) – list of image information dict where each dict has: ‘img_shape’, ‘scale_factor’, ‘flip’, and may also contain ‘filename’, ‘ori_shape’, ‘pad_shape’, and ‘img_norm_cfg’. For details on the values of these keys see mmtrack/datasets/pipelines/formatting.py:VideoCollect.

  • ref_img (list[Tensor] | None) – The list only contains one Tensor of shape (1, N, C, H, W) encoding input reference images. Typically these should be mean centered and std scaled. N denotes the number for reference images. There may be no reference images in some cases.

  • ref_img_metas (list[list[list[dict]]] | None) – The first and second list only has one element. The third list contains image information dict where each dict has: ‘img_shape’, ‘scale_factor’, ‘flip’, and may also contain ‘filename’, ‘ori_shape’, ‘pad_shape’, and ‘img_norm_cfg’. For details on the values of these keys see mmtrack/datasets/pipelines/formatting.py:VideoCollect. There may be no reference images in some cases.

  • proposals (None | Tensor) – Override rpn proposals with custom proposals. Use when with_rpn is False. Defaults to None.

  • rescale (bool) – If False, then returned bboxes and masks will fit the scale of img, otherwise, returned bboxes and masks will fit the scale of original image shape. Defaults to False.

Returns

list(ndarray)]: The detection results.

Return type

dict[str

class mmtrack.models.vid.SELSA(detector, pretrains=None, init_cfg=None, frozen_modules=None, train_cfg=None, test_cfg=None)[source]

Sequence Level Semantics Aggregation for Video Object Detection.

This video object detector is the implementation of SELSA.

aug_test(imgs, img_metas, **kwargs)[source]

Test function with test time augmentation.

extract_feats(img, img_metas, ref_img, ref_img_metas)[source]

Extract features for img during testing.

Parameters
  • img (Tensor) – of shape (1, C, H, W) encoding input image. Typically these should be mean centered and std scaled.

  • img_metas (list[dict]) – list of image information dict where each dict has: ‘img_shape’, ‘scale_factor’, ‘flip’, and may also contain ‘filename’, ‘ori_shape’, ‘pad_shape’, and ‘img_norm_cfg’. For details on the values of these keys see mmtrack/datasets/pipelines/formatting.py:VideoCollect.

  • ref_img (Tensor | None) – of shape (1, N, C, H, W) encoding input reference images. Typically these should be mean centered and std scaled. N denotes the number of reference images. There may be no reference images in some cases.

  • ref_img_metas (list[list[dict]] | None) – The first list only has one element. The second list contains image information dict where each dict has: ‘img_shape’, ‘scale_factor’, ‘flip’, and may also contain ‘filename’, ‘ori_shape’, ‘pad_shape’, and ‘img_norm_cfg’. For details on the values of these keys see mmtrack/datasets/pipelines/formatting.py:VideoCollect. There may be no reference images in some cases.

Returns

x is the multi level

feature maps of img, ref_x is the multi level feature maps of ref_img.

Return type

tuple(x, img_metas, ref_x, ref_img_metas)

forward_train(img, img_metas, gt_bboxes, gt_labels, ref_img, ref_img_metas, ref_gt_bboxes, ref_gt_labels, gt_instance_ids=None, gt_bboxes_ignore=None, gt_masks=None, proposals=None, ref_gt_instance_ids=None, ref_gt_bboxes_ignore=None, ref_gt_masks=None, ref_proposals=None, **kwargs)[source]
Parameters
  • img (Tensor) – of shape (N, C, H, W) encoding input images. Typically these should be mean centered and std scaled.

  • img_metas (list[dict]) – list of image info dict where each dict has: ‘img_shape’, ‘scale_factor’, ‘flip’, and may also contain ‘filename’, ‘ori_shape’, ‘pad_shape’, and ‘img_norm_cfg’. For details on the values of these keys see mmtrack/datasets/pipelines/formatting.py:VideoCollect.

  • gt_bboxes (list[Tensor]) – Ground truth bboxes for each image with shape (num_gts, 4) in [tl_x, tl_y, br_x, br_y] format.

  • gt_labels (list[Tensor]) – class indices corresponding to each box.

  • ref_img (Tensor) – of shape (N, 2, C, H, W) encoding input images. Typically these should be mean centered and std scaled. 2 denotes there is two reference images for each input image.

  • ref_img_metas (list[list[dict]]) – The first list only has one element. The second list contains reference image information dict where each dict has: ‘img_shape’, ‘scale_factor’, ‘flip’, and may also contain ‘filename’, ‘ori_shape’, ‘pad_shape’, and ‘img_norm_cfg’. For details on the values of these keys see mmtrack/datasets/pipelines/formatting.py:VideoCollect.

  • ref_gt_bboxes (list[Tensor]) – The list only has one Tensor. The Tensor contains ground truth bboxes for each reference image with shape (num_all_ref_gts, 5) in [ref_img_id, tl_x, tl_y, br_x, br_y] format. The ref_img_id start from 0, and denotes the id of reference image for each key image.

  • ref_gt_labels (list[Tensor]) – The list only has one Tensor. The Tensor contains class indices corresponding to each reference box with shape (num_all_ref_gts, 2) in [ref_img_id, class_indice].

  • gt_instance_ids (None | list[Tensor]) – specify the instance id for each ground truth bbox.

  • gt_bboxes_ignore (None | list[Tensor]) – specify which bounding boxes can be ignored when computing the loss.

  • gt_masks (None | Tensor) – true segmentation masks for each box used if the architecture supports a segmentation task.

  • proposals (None | Tensor) – override rpn proposals with custom proposals. Use when with_rpn is False.

  • ref_gt_instance_ids (None | list[Tensor]) – specify the instance id for each ground truth bboxes of reference images.

  • ref_gt_bboxes_ignore (None | list[Tensor]) – specify which bounding boxes of reference images can be ignored when computing the loss.

  • ref_gt_masks (None | Tensor) – True segmentation masks for each box of reference image used if the architecture supports a segmentation task.

  • ref_proposals (None | Tensor) – override rpn proposals with custom proposals of reference images. Use when with_rpn is False.

Returns

a dictionary of loss components

Return type

dict[str, Tensor]

simple_test(img, img_metas, ref_img=None, ref_img_metas=None, proposals=None, ref_proposals=None, rescale=False)[source]

Test without augmentation.

Parameters
  • img (Tensor) – of shape (1, C, H, W) encoding input image. Typically these should be mean centered and std scaled.

  • img_metas (list[dict]) – list of image information dict where each dict has: ‘img_shape’, ‘scale_factor’, ‘flip’, and may also contain ‘filename’, ‘ori_shape’, ‘pad_shape’, and ‘img_norm_cfg’. For details on the values of these keys see mmtrack/datasets/pipelines/formatting.py:VideoCollect.

  • ref_img (list[Tensor] | None) – The list only contains one Tensor of shape (1, N, C, H, W) encoding input reference images. Typically these should be mean centered and std scaled. N denotes the number for reference images. There may be no reference images in some cases.

  • ref_img_metas (list[list[list[dict]]] | None) – The first and second list only has one element. The third list contains image information dict where each dict has: ‘img_shape’, ‘scale_factor’, ‘flip’, and may also contain ‘filename’, ‘ori_shape’, ‘pad_shape’, and ‘img_norm_cfg’. For details on the values of these keys see mmtrack/datasets/pipelines/formatting.py:VideoCollect. There may be no reference images in some cases.

  • proposals (None | Tensor) – Override rpn proposals with custom proposals. Use when with_rpn is False. Defaults to None.

  • rescale (bool) – If False, then returned bboxes and masks will fit the scale of img, otherwise, returned bboxes and masks will fit the scale of original image shape. Defaults to False.

Returns

list(ndarray)]: The detection results.

Return type

dict[str

aggregators

class mmtrack.models.aggregators.EmbedAggregator(num_convs=1, channels=256, kernel_size=3, norm_cfg=None, act_cfg={'type': 'ReLU'}, init_cfg=None)[source]

Embedding convs to aggregate multi feature maps.

This module is proposed in “Flow-Guided Feature Aggregation for Video Object Detection”. FGFA.

Parameters
  • num_convs (int) – Number of embedding convs.

  • channels (int) – Channels of embedding convs. Defaults to 256.

  • kernel_size (int) – Kernel size of embedding convs, Defaults to 3.

  • norm_cfg (dict) – Configuration of normlization method after each conv. Defaults to None.

  • act_cfg (dict) – Configuration of activation method after each conv. Defaults to dict(type=’ReLU’).

  • init_cfg (dict or list[dict], optional) – Initialization config dict. Defaults to None.

forward(x, ref_x)[source]

Aggregate reference feature maps ref_x.

The aggregation mainly contains two steps: 1. Computing the cos similarity between x and ref_x. 2. Use the normlized (i.e. softmax) cos similarity to weightedly sum ref_x.

Parameters
  • x (Tensor) – of shape [1, C, H, W]

  • ref_x (Tensor) – of shape [N, C, H, W]. N is the number of reference feature maps.

Returns

The aggregated feature map with shape [1, C, H, W].

Return type

Tensor

class mmtrack.models.aggregators.SelsaAggregator(in_channels, num_attention_blocks=16, init_cfg=None)[source]

Selsa aggregator module.

This module is proposed in “Sequence Level Semantics Aggregation for Video Object Detection”. SELSA.

Parameters
  • in_channels (int) – The number of channels of the features of proposal.

  • num_attention_blocks (int) – The number of attention blocks used in selsa aggregator module. Defaults to 16.

  • init_cfg (dict or list[dict], optional) – Initialization config dict. Defaults to None.

forward(x, ref_x)[source]

Aggregate the features ref_x of reference proposals.

The aggregation mainly contains two steps: 1. Use multi-head attention to computing the weight between x and ref_x. 2. Use the normlized (i.e. softmax) weight to weightedly sum ref_x.

Parameters
  • x (Tensor) – of shape [N, C]. N is the number of key frame proposals.

  • ref_x (Tensor) – of shape [M, C]. M is the number of reference frame proposals.

Returns

The aggregated features of key frame proposals with shape [N, C].

Return type

Tensor

backbones

class mmtrack.models.backbones.ConvVisionTransformer(in_chans=3, act_layer=<class 'mmtrack.models.backbones.mixformer_backbone.QuickGELU'>, norm_layer=functools.partial(<class 'mmtrack.models.backbones.mixformer_backbone.LayerNormAutofp32'>, eps=1e-05), init='trunc_norm', num_stages=3, patch_size=[7, 3, 3], patch_stride=[4, 2, 2], patch_padding=[2, 1, 1], dim_embed=[64, 192, 384], num_heads=[1, 3, 6], depth=[1, 4, 16], mlp_channel_ratio=[4, 4, 4], attn_drop_rate=[0.0, 0.0, 0.0], drop_rate=[0.0, 0.0, 0.0], path_drop_probs=[0.0, 0.0, 0.1], qkv_bias=[True, True, True], qkv_proj_method=['dw_bn', 'dw_bn', 'dw_bn'], kernel_qkv=[3, 3, 3], padding_kv=[1, 1, 1], stride_kv=[2, 2, 2], padding_q=[1, 1, 1], stride_q=[1, 1, 1], norm_cfg={'requires_grad': False, 'type': 'BN'})[source]

Vision Transformer with support for patch or hybrid CNN input stage.

This backbone refers to the implementation of CvT:.

Parameters
  • in_chans (int) – number of input channels

  • act_layer (nn.Module) – activate function used in FFN

  • norm_layer (nn.Module) – normalization layer used in attention block

  • init (str) – weight init method

  • num_stage (int) – number of backbone stages

  • patch_size (List[int]) – patch size of each stage

  • patch_stride (List[int]) – patch stride of each stage

  • patch_padding (List[int]) – patch padding of each stage

  • dim_embed (List[int]) – embedding dimension of each stage

  • num_heads (List[int]) – number of heads in multi-head

  • operation of each stage (attention) –

  • depth (List[int]) – number of attention blocks of each stage

  • mlp_channel_ratio (List[int]) – hidden dim ratio of FFN of each stage

  • attn_drop_rate (List[float]) – attn drop rate of each stage

  • drop_rate (List[float]) – drop rate of each stage

  • path_drop_probs (List[float]) – drop path of each stage

  • qkv_bias (List[bool]) – qkv bias of each stage

  • qkv_proj_method (List[str]) – qkv project method of each stage

  • kernel_qkv (List[int]) – kernel size for qkv projection of each stage

  • padding_kv/q (List[int]) – padding size for kv/q projection

  • each stage (of) –

  • stride_kv/q (List[int]) – stride for kv/q project of each stage

  • norm_cfg (dict) – normalization layer config

forward(template, online_template, search)[source]

Forward-pass method in train pipeline.

Parameters
  • template (online) – template images of shape (B, C, H, W)

  • template – online template images

  • shape (of) –

  • search (Tensor) – search images of shape (B, C, H, W)

forward_test(search)[source]

Forward-pass method for search image in test pipeline. The model forwarding strategies are different between train and test. In test pipeline, we call search() method which only takes in search image when tracker is tracking current frame. This approach reduces computational overhead and thus increases tracking speed.

Parameters

search (Tensor) – search images of shape (B, C, H, W)

set_online(template, online_template)[source]

Forward-pass method for template image in test pipeline. The model forwarding strategies are different between train and test. In test pipeline, we call set_online() method which only takes in template images when tracker is initialized or is updating online template. This approach reduces computational overhead and thus increases tracking speed.

Parameters
  • template (online) – template images of shape (B, C, H, W)

  • template – online template images

  • shape (of) –

class mmtrack.models.backbones.SOTResNet(depth, unfreeze_backbone=True, **kwargs)[source]

ResNet backbone for SOT.

The main difference between ResNet in torch and the SOTResNet is the padding and dilation in the convs of SOTResNet. Please refer to SiamRPN++ for detailed analysis.

Parameters

depth (int) – Depth of resnet, from {50, }.

make_res_layer(**kwargs)[source]

Pack all blocks in a stage into a ResLayer.

losses

class mmtrack.models.losses.L2Loss(neg_pos_ub=- 1, pos_margin=- 1, neg_margin=- 1, hard_mining=False, reduction='mean', loss_weight=1.0)[source]

L2 loss.

Parameters
  • reduction (str, optional) – The method to reduce the loss. Options are “none”, “mean” and “sum”.

  • loss_weight (float, optional) – The weight of loss.

forward(pred, target, weight=None, avg_factor=None, reduction_override=None)[source]

Forward function.

Parameters
  • pred (torch.Tensor) – The prediction.

  • target (torch.Tensor) – The learning target of the prediction.

  • weight (torch.Tensor, optional) – The weight of loss for each prediction. Defaults to None.

  • avg_factor (int, optional) – Average factor that is used to average the loss. Defaults to None.

  • reduction_override (str, optional) – The reduction method used to override the original reduction method of the loss. Defaults to None.

static random_choice(gallery, num)[source]

Random select some elements from the gallery.

It seems that Pytorch’s implementation is slower than numpy so we use numpy to randperm the indices.

update_weight(pred, target, weight, avg_factor)[source]

Update the weight according to targets.

class mmtrack.models.losses.MultiPosCrossEntropyLoss(reduction='mean', loss_weight=1.0)[source]

multi-positive targets cross entropy loss.

forward(cls_score, label, weight=None, avg_factor=None, reduction_override=None, **kwargs)[source]

Forward function.

Parameters
  • cls_score (torch.Tensor) – The classification score.

  • label (torch.Tensor) – The assigned label of the prediction.

  • weight (torch.Tensor) – The element-wise weight.

  • avg_factor (float) – Average factor when computing the mean of losses.

  • reduction (str) – Same as built-in losses of PyTorch.

Returns

Calculated loss

Return type

torch.Tensor

multi_pos_cross_entropy(pred, label, weight=None, reduction='mean', avg_factor=None)[source]
Parameters
  • pred (torch.Tensor) – The prediction.

  • label (torch.Tensor) – The assigned label of the prediction.

  • weight (torch.Tensor) – The element-wise weight.

  • reduction (str) – Same as built-in losses of PyTorch.

  • avg_factor (float) – Average factor when computing the mean of losses.

Returns

Calculated loss

Return type

torch.Tensor

class mmtrack.models.losses.TripletLoss(margin=0.3, loss_weight=1.0, hard_mining=True)[source]

Triplet loss with hard positive/negative mining.

Reference:
Hermans et al. In Defense of the Triplet Loss for

Person Re-Identification. arXiv:1703.07737.

Imported from `<https://github.com/KaiyangZhou/deep-person-reid/blob/

master/torchreid/losses/hard_mine_triplet_loss.py>`_.

Parameters
  • margin (float, optional) – Margin for triplet loss. Default to 0.3.

  • loss_weight (float, optional) – Weight of the loss. Default to 1.0.

forward(inputs, targets, **kwargs)[source]

Defines the computation performed at every call.

Should be overridden by all subclasses.

Note

Although the recipe for forward pass needs to be defined within this function, one should call the Module instance afterwards instead of this since the former takes care of running the registered hooks while the latter silently ignores them.

hard_mining_triplet_loss_forward(inputs, targets)[source]
Parameters
  • inputs (torch.Tensor) – feature matrix with shape (batch_size, feat_dim).

  • targets (torch.LongTensor) – ground truth labels with shape (num_classes).

motion

class mmtrack.models.motion.CameraMotionCompensation(warp_mode='cv2.MOTION_EUCLIDEAN', num_iters=50, stop_eps=0.001)[source]

Camera motion compensation.

Parameters
  • warp_mode (str) – Warp mode in opencv.

  • num_iters (int) – Number of the iterations.

  • stop_eps (float) – Terminate threshold.

get_warp_matrix(img, ref_img)[source]

Calculate warping matrix between two images.

track(img, ref_img, tracks, num_samples, frame_id)[source]

Tracking forward.

warp_bboxes(bboxes, warp_matrix)[source]

Warp bounding boxes according to the warping matrix.

class mmtrack.models.motion.FlowNetSimple(img_scale_factor, out_indices=[2, 3, 4, 5, 6], flow_scale_factor=5.0, flow_img_norm_std=[255.0, 255.0, 255.0], flow_img_norm_mean=[0.411, 0.432, 0.45], init_cfg=None)[source]

The simple version of FlowNet.

This FlowNetSimple is the implementation of FlowNetSimple.

Parameters
  • img_scale_factor (float) – Used to upsample/downsample the image.

  • out_indices (list) – The indices of outputting feature maps after each group of conv layers. Defaults to [2, 3, 4, 5, 6].

  • flow_scale_factor (float) – Used to enlarge the values of flow. Defaults to 5.0.

  • flow_img_norm_std (list) – Used to scale the values of image. Defaults to [255.0, 255.0, 255.0].

  • flow_img_norm_mean (list) – Used to center the values of image. Defaults to [0.411, 0.432, 0.450].

  • init_cfg (dict or list[dict], optional) – Initialization config dict. Defaults to None.

crop_like(input, target)[source]

Crop input as the size of target.

forward(imgs, img_metas)[source]

Compute the flow of images pairs.

Parameters
  • imgs (Tensor) – of shape (N, 6, H, W) encoding input images pairs. Typically these should be mean centered and std scaled.

  • img_metas (list[dict]) – list of image information dict where each dict has: ‘img_shape’, ‘scale_factor’, ‘flip’, and may also contain ‘filename’, ‘ori_shape’, ‘pad_shape’, and ‘img_norm_cfg’. For details on the values of these keys see mmtrack/datasets/pipelines/formatting.py:VideoCollect.

Returns

of shape (N, 2, H, W) encoding flow of images pairs.

Return type

Tensor

prepare_imgs(imgs, img_metas)[source]

Preprocess images pairs for computing flow.

Parameters
  • imgs (Tensor) – of shape (N, 6, H, W) encoding input images pairs. Typically these should be mean centered and std scaled.

  • img_metas (list[dict]) – list of image information dict where each dict has: ‘img_shape’, ‘scale_factor’, ‘flip’, and may also contain ‘filename’, ‘ori_shape’, ‘pad_shape’, and ‘img_norm_cfg’. For details on the values of these keys see mmtrack/datasets/pipelines/formatting.py:VideoCollect.

Returns

of shape (N, 6, H, W) encoding the input images pairs for FlowNetSimple.

Return type

Tensor

class mmtrack.models.motion.KalmanFilter(center_only=False)[source]

A simple Kalman filter for tracking bounding boxes in image space.

The implementation is referred to https://github.com/nwojke/deep_sort.

gating_distance(mean, covariance, measurements, only_position=False)[source]

Compute gating distance between state distribution and measurements.

A suitable distance threshold can be obtained from chi2inv95. If only_position is False, the chi-square distribution has 4 degrees of freedom, otherwise 2.

Parameters
  • mean (ndarray) – Mean vector over the state distribution (8 dimensional).

  • covariance (ndarray) – Covariance of the state distribution (8x8 dimensional).

  • measurements (ndarray) – An Nx4 dimensional matrix of N measurements, each in format (x, y, a, h) where (x, y) is the bounding box center position, a the aspect ratio, and h the height.

  • only_position (bool, optional) – If True, distance computation is done with respect to the bounding box center position only. Defaults to False.

Returns

Returns an array of length N, where the i-th element contains the squared Mahalanobis distance between (mean, covariance) and measurements[i].

Return type

ndarray

initiate(measurement)[source]

Create track from unassociated measurement.

Parameters
  • measurement (ndarray) – Bounding box coordinates (x, y, a, h) with

  • position (center) –

Returns

Returns the mean vector (8 dimensional) and

covariance matrix (8x8 dimensional) of the new track. Unobserved velocities are initialized to 0 mean.

Return type

(ndarray, ndarray)

predict(mean, covariance)[source]

Run Kalman filter prediction step.

Parameters
  • mean (ndarray) – The 8 dimensional mean vector of the object state at the previous time step.

  • covariance (ndarray) – The 8x8 dimensional covariance matrix of the object state at the previous time step.

Returns

Returns the mean vector and covariance

matrix of the predicted state. Unobserved velocities are initialized to 0 mean.

Return type

(ndarray, ndarray)

project(mean, covariance)[source]

Project state distribution to measurement space.

Parameters
  • mean (ndarray) – The state’s mean vector (8 dimensional array).

  • covariance (ndarray) – The state’s covariance matrix (8x8 dimensional).

Returns

Returns the projected mean and covariance matrix of the given state estimate.

Return type

(ndarray, ndarray)

track(tracks, bboxes)[source]

Track forward.

Parameters
  • (dict[int (tracks) – dict]): Track buffer.

  • bboxes (Tensor) – Detected bounding boxes.

Returns

dict], Tensor): Updated tracks and bboxes.

Return type

(dict[int

update(mean, covariance, measurement)[source]

Run Kalman filter correction step.

Parameters
  • mean (ndarray) – The predicted state’s mean vector (8 dimensional).

  • covariance (ndarray) – The state’s covariance matrix (8x8 dimensional).

  • measurement (ndarray) – The 4 dimensional measurement vector (x, y, a, h), where (x, y) is the center position, a the aspect ratio, and h the height of the bounding box.

Returns

Returns the measurement-corrected state distribution.

Return type

(ndarray, ndarray)

class mmtrack.models.motion.LinearMotion(num_samples=2, center_motion=False)[source]

Linear motion while tracking.

Parameters
  • num_samples (int, optional) – Number of samples to calculate the velocity. Default to 2.

  • center_motion (bool, optional) – Whether use center location or bounding box location to estimate the velocity. Default to False.

center(bbox)[source]

Get the center of the box.

get_velocity(bboxes, num_samples=None)[source]

Get velocities of the input objects.

step(bboxes, velocity=None)[source]

Step forward with the velocity.

track(tracks, frame_id)[source]

Tracking forward.

reid

class mmtrack.models.reid.BaseReID(backbone, neck=None, head=None, pretrained=None, train_cfg=None, init_cfg=None)[source]

Base class for re-identification.

forward_train(img, gt_label, **kwargs)[source]

“Training forward function.

simple_test(img, **kwargs)[source]

Test without augmentation.

class mmtrack.models.reid.FcModule(in_channels, out_channels, norm_cfg=None, act_cfg={'type': 'ReLU'}, inplace=True, init_cfg={'layer': 'Linear', 'type': 'Kaiming'})[source]

Fully-connected layer module.

Parameters
  • in_channels (int) – Input channels.

  • out_channels (int) – Ourput channels.

  • norm_cfg (dict, optional) – Configuration of normlization method after fc. Defaults to None.

  • act_cfg (dict, optional) – Configuration of activation method after fc. Defaults to dict(type=’ReLU’).

  • inplace (bool, optional) – Whether inplace the activatation module.

  • init_cfg (dict or list[dict], optional) – Initialization config dict. Defaults to dict(type=’Kaiming’, layer=’Linear’).

forward(x, activate=True, norm=True)[source]

Model forward.

property norm

Normalization.

class mmtrack.models.reid.GlobalAveragePooling(kernel_size=None, stride=None)[source]

Global Average Pooling neck.

Note that we use view to remove extra channel after pooling. We do not use squeeze as it will also remove the batch dimension when the tensor has a batch dimension of size 1, which can lead to unexpected errors.

class mmtrack.models.reid.LinearReIDHead(num_fcs, in_channels, fc_channels, out_channels, norm_cfg=None, act_cfg=None, num_classes=None, loss=None, loss_pairwise=None, topk=(1), init_cfg={'bias': 0, 'layer': 'Linear', 'mean': 0, 'std': 0.01, 'type': 'Normal'})[source]

Linear head for re-identification.

Parameters
  • num_fcs (int) – Number of fcs.

  • in_channels (int) – Number of channels in the input.

  • fc_channels (int) – Number of channels in the fcs.

  • out_channels (int) – Number of channels in the output.

  • norm_cfg (dict, optional) – Configuration of normlization method after fc. Defaults to None.

  • act_cfg (dict, optional) – Configuration of activation method after fc. Defaults to None.

  • num_classes (int, optional) – Number of the identities. Default to None.

  • loss (dict, optional) – Cross entropy loss to train the re-identificaiton module.

  • loss_pairwise (dict, optional) – Triplet loss to train the re-identificaiton module.

  • topk (int, optional) – Calculate topk accuracy. Default to False.

  • init_cfg (dict or list[dict], optional) – Initialization config dict. Defaults to dict(type=’Normal’,layer=’Linear’, mean=0, std=0.01, bias=0).

forward_train(x)[source]

Model forward.

loss(gt_label, feats, cls_score=None)[source]

Compute losses.

roi_heads

class mmtrack.models.roi_heads.SelsaBBoxHead(aggregator, *args, **kwargs)[source]

Selsa bbox head.

This module is proposed in “Sequence Level Semantics Aggregation for Video Object Detection”. SELSA.

Parameters

aggregator (dict) – Configuration of aggregator.

forward(x, ref_x)[source]

Computing the cls_score and bbox_pred of the features x of key frame proposals.

Parameters
  • x (Tensor) – of shape [N, C, H, W]. N is the number of key frame proposals.

  • ref_x (Tensor) – of shape [M, C, H, W]. M is the number of reference frame proposals.

Returns

The predicted score of classes and the predicted regression offsets.

Return type

tuple(cls_score, bbox_pred)

class mmtrack.models.roi_heads.SelsaRoIHead(bbox_roi_extractor=None, bbox_head=None, mask_roi_extractor=None, mask_head=None, shared_head=None, train_cfg=None, test_cfg=None, pretrained=None, init_cfg=None)[source]

selsa roi head.

forward_train(x, ref_x, img_metas, proposal_list, ref_proposal_list, gt_bboxes, gt_labels, gt_bboxes_ignore=None, gt_masks=None)[source]
Parameters
  • x (list[Tensor]) – list of multi-level img features.

  • ref_x (list[Tensor]) – list of multi-level ref_img features.

  • img_metas (list[dict]) – list of image info dict where each dict has: ‘img_shape’, ‘scale_factor’, ‘flip’, and may also contain ‘filename’, ‘ori_shape’, ‘pad_shape’, and ‘img_norm_cfg’. For details on the values of these keys see mmdet/datasets/pipelines/formatting.py:Collect.

  • proposal_list (list[Tensors]) – list of region proposals.

  • ref_proposal_list (list[Tensors]) – list of region proposals from ref_imgs.

  • gt_bboxes (list[Tensor]) – Ground truth bboxes for each image with shape (num_gts, 4) in [tl_x, tl_y, br_x, br_y] format.

  • gt_labels (list[Tensor]) – class indices corresponding to each box

  • gt_bboxes_ignore (None | list[Tensor]) – specify which bounding boxes can be ignored when computing the loss.

  • gt_masks (None | Tensor) – true segmentation masks for each box used if the architecture supports a segmentation task.

Returns

a dictionary of loss components

Return type

dict[str, Tensor]

simple_test(x, ref_x, proposals_list, ref_proposals_list, img_metas, proposals=None, rescale=False)[source]

Test without augmentation.

simple_test_bboxes(x, ref_x, proposals, ref_proposals, img_metas, rcnn_test_cfg, rescale=False)[source]

Test only det bboxes without augmentation.

class mmtrack.models.roi_heads.SingleRoIExtractor(roi_layer, out_channels, featmap_strides, finest_scale=56, init_cfg=None)[source]

Extract RoI features from a single level feature map.

This Class is the same as SingleRoIExtractor from mmdet.models.roi_heads.roi_extractors except for using **kwargs to accept external arguments.

forward(feats, rois, roi_scale_factor=None, **kwargs)[source]

Forward function.

class mmtrack.models.roi_heads.TemporalRoIAlign(num_most_similar_points=2, num_temporal_attention_blocks=4, *args, **kwargs)[source]

Temporal RoI Align module.

This module is proposed in “Temporal ROI Align for Video Object Recognition”. TRoI Align.

Parameters
  • num_most_similar_points (int) – Denotes the number of the most similar points in the Most Similar RoI Align. Defaults to 2.

  • num_temporal_attention_blocks (int) – Denotes the number of temporal attention blocks in the Temporal Attentional Feature Aggregation. If the value isn’t greater than 0, the averaging operation will be adopted to aggregate the RoI features with the Most Similar RoI features. Defaults to 4.

forward(feats, rois, roi_scale_factor=None, ref_feats=None)[source]

Forward function.

most_similar_roi_align(roi_feats, ref_feats)[source]

Extract the Most Similar RoI features from reference feature maps ref_feats based on RoI features roi_feats.

The extraction mainly contains three steps: 1. Compute cos similarity maps between roi_feats and ref_feats. 2. Pick the top K points based on the similarity maps. 3. Project these top K points into reference feature maps ref_feats.

Parameters
  • roi_feats (Tensor) – of shape [roi_n, C, roi_h, roi_w]. roi_n, roi_h and roi_w denote the number of key frame proposals, the height of RoI features and the width of RoI features, respectively.

  • ref_feats (Tensor) – of shape [img_n, C, img_h, img_w]. img_n, img_h and img_w denote the number of reference frames, the height of reference frame feature maps and the width of reference frame feature maps, respectively.

Returns

The extracted Most Similar RoI features from reference

feature maps with shape [img_n, roi_n, C, roi_h, roi_w].

Return type

Tensor

temporal_attentional_feature_aggregation(x, ref_x)[source]

Aggregate the RoI features x with the Most Similar RoI features ref_x.

The aggregation mainly contains three steps: 1. Pass through a tiny embed network. 2. Use multi-head attention to computing the weight between x and ref_x. 3. Use the normlized (i.e. softmax) weight to weightedly sum x and ref_x.

Parameters
  • x (Tensor) – of shape [1, roi_n, C, roi_h, roi_w]. roi_n, roi_h and roi_w denote the number of key frame proposals, the height of RoI features and the width of RoI features, respectively.

  • ref_x (Tensor) – of shape [img_n, roi_n, C, roi_h, roi_w]. img_n is the number of reference images.

Returns

The aggregated Temporal RoI features of key frame

proposals with shape [roi_n, C, roi_h, roi_w].

Return type

Tensor

track_heads

class mmtrack.models.track_heads.CornerPredictorHead(inplanes, channel, feat_size=20, stride=16)[source]

Corner Predictor head.

Parameters
  • inplanes (int) – input channel

  • channel (int) – the output channel of the first conv block

  • feat_size (int) – the size of feature map

  • stride (int) – the stride of feature map from the backbone

forward(x)[source]

Forward pass with input x.

Parameters

x (Tensor) – of shape (bs, C, H, W).

Returns

bbox of shape (bs, 4) in (tl_x, tl_y, br_x, br_y) format.

Return type

(Tensor)

get_score_map(x)[source]

Score map branch.

Parameters

x (Tensor) – of shape (bs, C, H, W).

Returns

of shape (bs, 1, H, W). The score map of top

left corner of tracking bbox.

score_map_br (Tensor): of shape (bs, 1, H, W). The score map of

bottom right corner of tracking bbox.

Return type

score_map_tl (Tensor)

soft_argmax(score_map)[source]

Get soft-argmax coordinate for the given score map.

Parameters

score_map (self.feat_size, self.feat_size) – the last score map in bbox_head branch

Returns

of shape (bs, 1). The values are in range

[0, self.feat_size * self.stride]

exp_y (Tensor): of shape (bs, 1). The values are in range

[0, self.feat_size * self.stride]

Return type

exp_x (Tensor)

class mmtrack.models.track_heads.CorrelationHead(in_channels, mid_channels, out_channels, kernel_size=3, norm_cfg={'type': 'BN'}, act_cfg={'type': 'ReLU'}, init_cfg=None, **kwargs)[source]

Correlation head module.

This module is proposed in “SiamRPN++: Evolution of Siamese Visual Tracking with Very Deep Networks. SiamRPN++.

Parameters
  • in_channels (int) – Input channels.

  • mid_channels (int) – Middle channels.

  • out_channels (int) – Output channels.

  • kernel_size (int) – Kernel size of convs. Defaults to 3.

  • norm_cfg (dict) – Configuration of normlization method after each conv. Defaults to dict(type=’BN’).

  • act_cfg (dict) – Configuration of activation method after each conv. Defaults to dict(type=’ReLU’).

  • init_cfg (dict or list[dict], optional) – Initialization config dict. Defaults to None.

forward(kernel, search)[source]

Defines the computation performed at every call.

Should be overridden by all subclasses.

Note

Although the recipe for forward pass needs to be defined within this function, one should call the Module instance afterwards instead of this since the former takes care of running the registered hooks while the latter silently ignores them.

class mmtrack.models.track_heads.MixFormerHead(bbox_head=None, score_head=None, loss_bbox={'loss_weight': 5.0, 'type': 'L1Loss'}, loss_iou={'loss_weight': 2.0, 'type': 'GIoULoss'}, train_cfg=None, test_cfg=None, init_cfg=None)[source]

MixFormer head module for bounding box regression and prediction of confidence of tracking bbox.

This module is proposed in “MixFormer: End-to-End Tracking with Iterative Mixed Attention”. MixFormer.

forward(template, search, run_score_head=True, gt_bboxes=None)[source]
Parameters
  • template (Tensor) – Template features extracted from backbone,

  • shape (with) –

  • search (Tensor) – Search region features extracted from backbone,

  • shape

Returns

  • ‘pred_bboxes’: (Tensor) of shape (bs, 1, 4), in

    [tl_x, tl_y, br_x, br_y] format

  • ’pred_scores’: (Tensor) of shape (bs, 1, 1)

Return type

(dict)

forward_bbox_head(search)[source]
Parameters
  • search (Tensor) – Search region features extracted from backbone,

  • shape (with) –

Returns

of shape (bs, 1, 4). The bbox is in [tl_x, tl_y, br_x, by_y] format.

Return type

Tensor

loss(track_results, gt_bboxes, gt_labels, img_size=None)[source]

compute loss. Not Implemented yet!

Parameters
  • track_results (dict) –

    it may contains the following keys: - ‘pred_bboxes’: bboxes of (N, num_query, 4) shape in

    [tl_x, tl_y, br_x, br_y] format.

    • ’pred_scores’: scores of (N, num_query, 1) shaoe.

  • gt_bboxes (list[Tensor]) – ground truth bboxes for search image with shape (N, 5) in [0., tl_x, tl_y, br_x, br_y] format.

  • gt_labels (list[Tensor]) – ground truth labels for search imges with shape (N, 2).

  • img_size (tuple, optional) – the size (h, w) of original search image. Defaults to None.

class mmtrack.models.track_heads.MixFormerScoreDecoder(pool_size=4, feat_size=20, stride=16, num_heads=6, hidden_dim=384, num_layers=3)[source]

Score Prediction Module (SPM) proposed in “MixFormer: End-to-End Tracking with Iterative Mixed Attention”. MixFormer.

Parameters
  • pool_size (int) – pool size for roi pooling

  • feat_size (int) – search region feature map size

  • stride (int) – ratio between original image size

  • feature map size (and) –

  • num_heads (int) – number of heads of attention

  • hidden_dim (int) – embedding dimension

  • num_layer (int) – number of layers of the mlp

forward(search_feat, template_feat, search_box)[source]
Parameters
  • search_feat (Tensor) – Search region features extracted from

  • with shape (backbone) –

  • template_feat (Tensor) – Template features extracted from

  • with shape

  • search_box (Tensor) – of shape (B, 4), in

  • [tl_x

  • tl_y

  • br_x

  • format. (br_y]) –

Returns

Confidence score of the predicted result.

of shape (b, 1, 1)

Return type

out_score (Tensor)

class mmtrack.models.track_heads.QuasiDenseEmbedHead(embed_channels=256, softmax_temp=- 1, loss_track={'loss_weight': 0.25, 'type': 'MultiPosCrossEntropyLoss'}, loss_track_aux={'hard_mining': True, 'loss_weight': 1.0, 'margin': 0.3, 'sample_ratio': 3, 'type': 'L2Loss'}, init_cfg={'bias': 0, 'distribution': 'uniform', 'layer': 'Linear', 'override': {'bias': 0, 'mean': 0, 'name': 'fc_embed', 'std': 0.01, 'type': 'Normal'}, 'type': 'Xavier'}, *args, **kwargs)[source]

The quasi-dense roi embed head.

Parameters
  • embed_channels (int) – The input channel of embed features. Defaults to 256.

  • softmax_temp (int) – Softmax temperature. Defaults to -1.

  • loss_track (dict) – The loss function for tracking. Defaults to MultiPosCrossEntropyLoss.

  • loss_track_aux (dict) – The auxiliary loss function for tracking. Defaults to L2Loss.

forward(x)[source]

Forward the input x.

get_targets(gt_match_indices, key_sampling_results, ref_sampling_results)[source]

Calculate the track targets and track weights for all samples in a batch according to the sampling_results.

Parameters
  • (List[obj (ref_sampling_results) – SamplingResults]): Assign results of all images in a batch after sampling.

  • (List[obj – SamplingResults]): Assign results of all reference images in a batch after sampling.

  • gt_match_indices (list(Tensor)) – Mapping from gt_instance_ids to ref_gt_instance_ids of the same tracklet in a pair of images.

Returns

Association results. Containing the following list of Tensors:

  • track_targets (list[Tensor]): The mapping instance ids from

    all positive proposals in the key image to all proposals in the reference image, each tensor in list has shape (len(key_pos_bboxes), len(ref_bboxes)).

  • track_weights (list[Tensor]): Loss weights for all positive

    proposals in a batch, each tensor in list has shape (len(key_pos_bboxes),).

Return type

Tuple[list[Tensor]]

loss(dists, cos_dists, targets, weights)[source]

Calculate the track loss and the auxiliary track loss.

Parameters
  • dists (list[Tensor]) – Dot-product dists between key_embeds and ref_embeds.

  • cos_dists (list[Tensor]) – Cosine dists between key_embeds and ref_embeds.

  • targets (list[Tensor]) – The mapping instance ids from all positive proposals in the key image to all proposals in the reference image, each tensor in list has shape (len(key_pos_bboxes), len(ref_bboxes)).

  • weights (list[Tensor]) – Loss weights for all positive proposals in a batch, each tensor in list has shape (len(key_pos_bboxes),).

Returns

Tensor]: Calculation results. Containing the following list of Tensors:

  • loss_track (Tensor): Results of loss_track function.

  • loss_track_aux (Tensor): Results of loss_track_aux function.

Return type

Dict [str

match(key_embeds, ref_embeds, key_sampling_results, ref_sampling_results)[source]

Calculate the dist matrixes for loss measurement.

Parameters
  • key_embeds (Tensor) – Embeds of positive bboxes in sampling results of key image.

  • ref_embeds (Tensor) – Embeds of all bboxes in sampling results of the reference image.

  • (List[obj (ref_sampling_results) – SamplingResults]): Assign results of all images in a batch after sampling.

  • (List[obj – SamplingResults]): Assign results of all reference images in a batch after sampling.

Returns

Calculation results. Containing the following list of Tensors:

  • dists (list[Tensor]): Dot-product dists between

    key_embeds and ref_embeds, each tensor in list has shape (len(key_pos_bboxes), len(ref_bboxes)).

  • cos_dists (list[Tensor]): Cosine dists between

    key_embeds and ref_embeds, each tensor in list has shape (len(key_pos_bboxes), len(ref_bboxes)).

Return type

Tuple[list[Tensor]]

class mmtrack.models.track_heads.QuasiDenseTrackHead(*args, **kwargs)[source]

The quasi-dense track head.

extract_bbox_feats(x, bboxes)[source]

Extract roi features.

forward_train(x, img_metas, proposal_list, gt_bboxes, gt_labels, gt_match_indices, ref_x, ref_img_metas, ref_proposals, ref_gt_bboxes, ref_gt_labels, gt_bboxes_ignore=None, gt_masks=None, ref_gt_bboxes_ignore=None, ref_gt_mask=None, *args, **kwargs)[source]

Forward function during training.

Args:

x (list[Tensor]): list of multi-level image features. img_metas (list[dict]): list of image info dict where each dict

has: ‘img_shape’, ‘scale_factor’, ‘flip’, and may also contain ‘filename’, ‘ori_shape’, ‘pad_shape’, and ‘img_norm_cfg’.

proposal_list (list[Tensors]): list of region proposals. gt_bboxes (list[Tensor]): Ground truth bboxes of the image,

each item has a shape (num_gts, 4).

gt_labels (list[Tensor]): Ground truth labels of all images.

each has a shape (num_gts,).

gt_match_indices (list(Tensor)): Mapping from gt_instance_ids to

ref_gt_instance_ids of the same tracklet in a pair of images.

ref_x (list[Tensor]): list of multi-level ref_img features. ref_img_metas (list[dict]): list of reference image info dict where

each dict has: ‘img_shape’, ‘scale_factor’, ‘flip’, and may also contain ‘filename’, ‘ori_shape’, ‘pad_shape’, and ‘img_norm_cfg’.

ref_proposal_list (list[Tensors]): list of ref_img

region proposals.

ref_gt_bboxes (list[Tensor]): Ground truth bboxes of the

reference image, each item has a shape (num_gts, 4).

ref_gt_labels (list[Tensor]): Ground truth labels of all

reference images, each has a shape (num_gts,).

gt_bboxes_ignore (list[Tensor], None): Ground truth bboxes to be

ignored, each item has a shape (num_ignored_gts, 4).

gt_masks (list[Tensor])Masks for each bbox, has a shape

(num_gts, h , w).

ref_gt_bboxes_ignore (list[Tensor], None): Ground truth bboxes

of reference images to be ignored, each item has a shape (num_ignored_gts, 4).

ref_gt_masks (list[Tensor])Masks for each reference bbox,

has a shape (num_gts, h , w).

Returns

Tensor]: Track losses.

Return type

dict[str

class mmtrack.models.track_heads.RoIEmbedHead(num_convs=0, num_fcs=0, roi_feat_size=7, in_channels=256, conv_out_channels=256, with_avg_pool=False, fc_out_channels=1024, conv_cfg=None, norm_cfg=None, loss_match={'loss_weight': 1.0, 'type': 'CrossEntropyLoss', 'use_sigmoid': False}, init_cfg=None, **kwargs)[source]

The roi embed head.

This module is used in multi-object tracking methods, such as MaskTrack R-CNN.

Parameters
  • num_convs (int) – The number of convoluational layers to embed roi features. Defaults to 0.

  • num_fcs (int) – The number of fully connection layers to embed roi features. Defaults to 0.

  • roi_feat_size (int|tuple(int)) – The spatial size of roi features. Defaults to 7.

  • in_channels (int) – The input channel of roi features. Defaults to 256.

  • conv_out_channels (int) – The output channel of roi features after forwarding convoluational layers. Defaults to 256.

  • with_avg_pool (bool) – Whether use average pooling before passing roi features into fully connection layers. Defaults to False.

  • fc_out_channels (int) – The output channel of roi features after forwarding fully connection layers. Defaults to 1024.

  • conv_cfg (dict) – Config dict for convolution layer. Defaults to None, which means using conv2d.

  • norm_cfg (dict) – Config dict for normalization layer. Defaults to None.

  • loss_match (dict) – The loss function. Defaults to dict(type=’CrossEntropyLoss’, use_sigmoid=False, loss_weight=1.0)

  • init_cfg (dict) – Configuration of initialization. Defaults to None.

forward(x, ref_x, num_x_per_img, num_x_per_ref_img)[source]

Computing the similarity scores between x and ref_x.

Parameters
  • x (Tensor) – of shape [N, C, H, W]. N is the number of key frame proposals.

  • ref_x (Tensor) – of shape [M, C, H, W]. M is the number of reference frame proposals.

  • num_x_per_img (list[int]) – The x contains proposals of multi-images. num_x_per_img denotes the number of proposals for each key image.

  • num_x_per_ref_img (list[int]) – The ref_x contains proposals of multi-images. num_x_per_ref_img denotes the number of proposals for each reference image.

Returns

The predicted similarity_logits of each pair of key image and reference image.

Return type

list[Tensor]

get_targets(sampling_results, gt_instance_ids, ref_gt_instance_ids)[source]

Calculate the ground truth for all samples in a batch according to the sampling_results.

Parameters
  • (List[obj (sampling_results) – SamplingResults]): Assign results of all images in a batch after sampling.

  • gt_instance_ids (list[Tensor]) – The instance ids of gt_bboxes of all images in a batch, each tensor has shape (num_gt, ).

  • ref_gt_instance_ids (list[Tensor]) – The instance ids of gt_bboxes of all reference images in a batch, each tensor has shape (num_gt, ).

Returns

Ground truth for proposals in a batch. Containing the following list of Tensors:

  • track_id_targets (list[Tensor]): The instance ids of Gt_labels for all proposals in a batch, each tensor in list has shape (num_proposals,).

  • track_id_weights (list[Tensor]): Labels_weights for all proposals in a batch, each tensor in list has shape (num_proposals,).

Return type

Tuple[list[Tensor]]

loss(similarity_logits, track_id_targets, track_id_weights, reduction_override=None)[source]

Calculate the loss in a batch.

Parameters
  • similarity_logits (list[Tensor]) – The predicted similarity_logits of each pair of key image and reference image.

  • track_id_targets (list[Tensor]) – The instance ids of Gt_labels for all proposals in a batch, each tensor in list has shape (num_proposals,).

  • track_id_weights (list[Tensor]) – Labels_weights for all proposals in a batch, each tensor in list has shape (num_proposals,).

  • reduction_override (str, optional) – The method used to reduce the loss. Options are “none”, “mean” and “sum”.

Returns

a dictionary of loss components.

Return type

dict[str, Tensor]

class mmtrack.models.track_heads.RoITrackHead(roi_extractor=None, embed_head=None, regress_head=None, train_cfg=None, test_cfg=None, init_cfg=None, *args, **kwargs)[source]

The roi track head.

This module is used in multi-object tracking methods, such as MaskTrack R-CNN.

Parameters
  • roi_extractor (dict) – Configuration of roi extractor. Defaults to None.

  • embed_head (dict) – Configuration of embed head. Defaults to None.

  • train_cfg (dict) – Configuration when training. Defaults to None.

  • test_cfg (dict) – Configuration when testing. Defaults to None.

  • init_cfg (dict) – Configuration of initialization. Defaults to None.

extract_roi_feats(x, bboxes)[source]

Extract roi features.

forward_train(x, ref_x, img_metas, proposal_list, gt_bboxes, ref_gt_bboxes, gt_labels, gt_instance_ids, ref_gt_instance_ids, gt_bboxes_ignore=None, **kwargs)[source]
Parameters
  • x (list[Tensor]) – list of multi-level image features.

  • ref_x (list[Tensor]) – list of multi-level ref_img features.

  • img_metas (list[dict]) – list of image info dict where each dict has: ‘img_shape’, ‘scale_factor’, ‘flip’, and may also contain ‘filename’, ‘ori_shape’, ‘pad_shape’, and ‘img_norm_cfg’. For details on the values of these keys see mmtrack/datasets/pipelines/formatting.py:VideoCollect.

  • proposal_list (list[Tensors]) – list of region proposals.

  • gt_bboxes (list[Tensor]) – Ground truth bboxes for each image with shape (num_gts, 4) in [tl_x, tl_y, br_x, br_y] format.

  • ref_gt_bboxes (list[Tensor]) – Ground truth bboxes for each reference image with shape (num_gts, 4) in [tl_x, tl_y, br_x, br_y] format.

  • gt_labels (list[Tensor]) – class indices corresponding to each box.

  • gt_instance_ids (None | list[Tensor]) – specify the instance id for each ground truth bbox.

  • ref_gt_instance_ids (None | list[Tensor]) – specify the instance id for each ground truth bbox of reference images.

  • gt_bboxes_ignore (None | list[Tensor]) – specify which bounding boxes can be ignored when computing the loss.

Returns

a dictionary of loss components

Return type

dict[str, Tensor]

init_assigner_sampler()[source]

Initialize assigner and sampler.

init_embed_head(roi_extractor, embed_head)[source]

Initialize embed_head

simple_test(roi_feats, prev_roi_feats)[source]

Test without augmentations.

property with_track

whether the mulit-object tracker has a embed head

Type

bool

class mmtrack.models.track_heads.SiameseRPNHead(anchor_generator, in_channels, kernel_size=3, norm_cfg={'type': 'BN'}, weighted_sum=False, bbox_coder={'target_means': [0.0, 0.0, 0.0, 0.0], 'target_stds': [1.0, 1.0, 1.0, 1.0], 'type': 'DeltaXYWHBBoxCoder'}, loss_cls={'loss_weight': 1.0, 'reduction': 'sum', 'type': 'CrossEntropyLoss'}, loss_bbox={'loss_weight': 1.2, 'reduction': 'sum', 'type': 'L1Loss'}, train_cfg=None, test_cfg=None, init_cfg=None, *args, **kwargs)[source]

Siamese RPN head.

This module is proposed in “SiamRPN++: Evolution of Siamese Visual Tracking with Very Deep Networks. SiamRPN++.

Parameters
  • anchor_generator (dict) – Configuration to build anchor generator module.

  • in_channels (int) – Input channels.

  • kernel_size (int) – Kernel size of convs. Defaults to 3.

  • norm_cfg (dict) – Configuration of normlization method after each conv. Defaults to dict(type=’BN’).

  • weighted_sum (bool) – If True, use learnable weights to weightedly sum the output of multi heads in siamese rpn , otherwise, use averaging. Defaults to False.

  • bbox_coder (dict) – Configuration to build bbox coder. Defaults to dict(type=’DeltaXYWHBBoxCoder’, target_means=[0., 0., 0., 0.], target_stds=[1., 1., 1., 1.]).

  • loss_cls (dict) – Configuration to build classification loss. Defaults to dict( type=’CrossEntropyLoss’, reduction=’sum’, loss_weight=1.0)

  • loss_bbox (dict) – Configuration to build bbox regression loss. Defaults to dict( type=’L1Loss’, reduction=’sum’, loss_weight=1.2).

  • train_cfg (Dict) – Training setting. Defaults to None.

  • test_cfg (Dict) – Testing setting. Defaults to None.

  • init_cfg (dict or list[dict], optional) – Initialization config dict. Defaults to None.

forward(z_feats, x_feats)[source]

Forward with features z_feats of exemplar images and features x_feats of search images.

Parameters
  • z_feats (tuple[Tensor]) – Tuple of Tensor with shape (N, C, H, W) denoting the multi level feature maps of exemplar images. Typically H and W equal to 7.

  • x_feats (tuple[Tensor]) – Tuple of Tensor with shape (N, C, H, W) denoting the multi level feature maps of search images. Typically H and W equal to 31.

Returns

cls_score is a Tensor with shape (N, 2 * num_base_anchors, H, W), bbox_pred is a Tensor with shape (N, 4 * num_base_anchors, H, W), Typically H and W equal to 25.

Return type

tuple(cls_score, bbox_pred)

get_bbox(cls_score, bbox_pred, prev_bbox, scale_factor)[source]

Track prev_bbox to current frame based on the output of network.

Parameters
  • cls_score (Tensor) – of shape (1, 2 * num_base_anchors, H, W).

  • bbox_pred (Tensor) – of shape (1, 4 * num_base_anchors, H, W).

  • prev_bbox (Tensor) – of shape (4, ) in [cx, cy, w, h] format.

  • scale_factor (Tensr) – scale factor.

Returns

best_score is a Tensor denoting the score of best_bbox, best_bbox is a Tensor of shape (4, ) with [cx, cy, w, h] format, which denotes the best tracked bbox in current frame.

Return type

tuple(best_score, best_bbox)

get_targets(gt_bboxes, score_maps_size, is_positive_pairs)[source]

Generate the training targets for exemplar image and search image pairs.

Parameters
  • gt_bboxes (list[Tensor]) – Ground truth bboxes of each search image with shape (1, 5) in [0.0, tl_x, tl_y, br_x, br_y] format.

  • score_maps_size (torch.size) – denoting the output size (height, width) of the network.

  • is_positive_pairs (bool) – list of bool denoting whether each ground truth bbox in gt_bboxes is positive.

Returns

tuple(all_labels, all_labels_weights, all_bbox_targets, all_bbox_weights): the shape is (N, H * W * num_base_anchors), (N, H * W * num_base_anchors), (N, H * W * num_base_anchors, 4), (N, H * W * num_base_anchors, 4), respectively. All of them are Tensor.

loss(cls_score, bbox_pred, labels, labels_weights, bbox_targets, bbox_weights)[source]

Compute loss.

Parameters
  • cls_score (Tensor) – of shape (N, 2 * num_base_anchors, H, W).

  • bbox_pred (Tensor) – of shape (N, 4 * num_base_anchors, H, W).

  • labels (Tensor) – of shape (N, H * W * num_base_anchors).

  • labels_weights (Tensor) – of shape (N, H * W * num_base_anchors).

  • bbox_targets (Tensor) – of shape (N, H * W * num_base_anchors, 4).

  • bbox_weights (Tensor) – of shape (N, H * W * num_base_anchors, 4).

Returns

a dictionary of loss components

Return type

dict[str, Tensor]

class mmtrack.models.track_heads.StarkHead(num_query=1, transformer=None, positional_encoding={'normalize': True, 'num_feats': 128, 'type': 'SinePositionalEncoding'}, bbox_head=None, cls_head=None, loss_cls={'loss_weight': 1.0, 'type': 'CrossEntropyLoss', 'use_sigmoid': False}, loss_bbox={'loss_weight': 5.0, 'type': 'L1Loss'}, loss_iou={'loss_weight': 2.0, 'type': 'GIoULoss'}, train_cfg=None, test_cfg=None, init_cfg=None, frozen_modules=None, **kwargs)[source]

STARK head module for bounding box regression and prediction of confidence score of tracking bbox.

This module is proposed in “Learning Spatio-Temporal Transformer for Visual Tracking”. STARK.

Parameters
  • num_query (int) – Number of query in transformer.

  • (obj (test_cfg) – `mmcv.ConfigDict`|dict): Config for transformer. Default: None.

  • (obj`mmcv.ConfigDict`|dict): Config for position encoding.

  • (obj`mmcv.ConfigDict`|dict, optional): Config for bbox head. Defaults to None.

  • (obj`mmcv.ConfigDict`|dict, optional): Config for classification head. Defaults to None.

  • (objmmcv.ConfigDict`|dict): Config of the classification loss. Default `CrossEntropyLoss.

  • (objmmcv.ConfigDict`|dict): Config of the bbox regression loss. Default `L1Loss.

  • (objmmcv.ConfigDict`|dict): Config of the bbox regression iou loss. Default `GIoULoss.

  • (obj`mmcv.ConfigDict`|dict): Training config of transformer head.

  • (obj`mmcv.ConfigDict`|dict): Testing config of transformer head.

  • init_cfg (dict or list[dict], optional) – Initialization config dict. Default: None

forward(inputs)[source]

” :param inputs: The list contains the

multi-level features and masks of template or search images.
  • ‘feat’: (tuple(Tensor)), the Tensor is of shape

    (bs, c, h//stride, w//stride).

  • ‘mask’: (Tensor), of shape (bs, h, w).

Here, h and w denote the height and width of input image respectively. stride is the stride of feature map.

Returns

  • ‘pred_bboxes’: (Tensor) of shape (bs, num_query, 4), in

    [tl_x, tl_y, br_x, br_y] format

  • ’pred_logit’: (Tensor) of shape (bs, num_query, 1)

Return type

(dict)

forward_bbox_head(feat, enc_mem)[source]
Parameters
  • feat – output embeddings of decoder, with shape (1, bs, num_query, c).

  • enc_mem

    output embeddings of encoder, with shape (feats_flatten_len, bs, C)

    Here, ‘feats_flatten_len’ = z_feat_h*z_feat_w*2 + x_feat_h*x_feat_w. ‘z_feat_h’ and ‘z_feat_w’ denote the height and width of the template features respectively. ‘x_feat_h’ and ‘x_feat_w’ denote the height and width of search features respectively.

Returns

of shape (bs, num_query, 4). The bbox is in

[tl_x, tl_y, br_x, br_y] format.

Return type

Tensor

init_weights()[source]

Parameters initialization.

loss(track_results, gt_bboxes, gt_labels, img_size=None)[source]

Compute loss.

Parameters
  • track_results (dict) –

    it may contains the following keys: - ‘pred_bboxes’: bboxes of (N, num_query, 4) shape in

    [tl_x, tl_y, br_x, br_y] format.

    • ’pred_logits’: bboxes of (N, num_query, 1) shape.

  • gt_bboxes (list[Tensor]) – ground truth bboxes for search images with shape (N, 5) in [0., tl_x, tl_y, br_x, br_y] format.

  • gt_labels (list[Tensor]) – ground truth labels for search images with shape (N, 2).

  • img_size (tuple, optional) – the size (h, w) of original search image. Defaults to None.

Returns

a dictionary of loss components.

Return type

dict[str, Tensor]

builder

mmtrack.models.build_aggregator(cfg)[source]

Build aggregator model.

mmtrack.models.build_model(cfg, train_cfg=None, test_cfg=None)[source]

Build model.

mmtrack.models.build_motion(cfg)[source]

Build motion model.

mmtrack.models.build_reid(cfg)[source]

Build reid model.

mmtrack.models.build_tracker(cfg)[source]

Build tracker.

mmtrack.utils

mmtrack.utils.build_ddp(model, device='cuda', *args, **kwargs)[source]

Build DistributedDataParallel module by device type. If device is cuda, return a MMDistributedDataParallel model; if device is npu, return a NPUDistributedDataParallel model. :param model: module to be parallelized. :type model: nn.Module :param device: device type, npu or cuda. :type device: str

Returns

the module to be parallelized

Return type

nn.Module

References

1

https://pytorch.org/docs/stable/generated/torch.nn.parallel. DistributedDataParallel.html

mmtrack.utils.build_dp(model, device='cuda', dim=0, *args, **kwargs)[source]

build DataParallel module by device type.

if device is cuda, return a MMDataParallel model; if device is npu, return a NPUDataParallel model. :param model: model to be parallelized. :type model: nn.Module :param device: device type, cuda, cpu or npu. Defaults to cuda. :type device: str :param dim: Dimension used to scatter the data. Defaults to 0. :type dim: int

Returns

the model to be parallelized.

Return type

nn.Module

mmtrack.utils.collect_env()[source]

Collect the information of the running environments.

mmtrack.utils.get_device()[source]

Returns an available device, cpu, cuda or npu.

mmtrack.utils.get_root_logger(log_file=None, log_level=20)[source]

Get root logger.

Parameters
  • log_file (str) – File path of log. Defaults to None.

  • log_level (int) – The level of logger. Defaults to logging.INFO.

Returns

The obtained logger

Return type

logging.Logger

Read the Docs v: latest
Versions
latest
stable
1.x
dev-1.x
Downloads
pdf
html
epub
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.