Example: marketing

Track To Detect and Segment: An Online Multi-Object Tracker

Track to Detect and Segment: An Online Multi-Object TrackerJialian Wu1, Jiale Cao2, Liangchen Song1, Yu Wang3, Ming Yang3, Junsong Yuan11 SUNY Buffalo2 TJU3 Horizon RoboticsAbstractMost Online Multi-Object trackers perform object detec-tion stand-alone in a neural net without any input fromtracking. In this paper, we present a new Online jointdetection and tracking model, TraDeS ( Track to DEtectand Segment), exploiting tracking clues to assist detectionend-to-end. TraDeS infers object tracking offset by a costvolume, which is used to propagate previous object fea-tures for improving current object detection and segmen-tation.

including 2D object tracking, 3D object tracking, and in-stance segmentation tracking. TraDeS achieves state-of-the-art performance with an efficient inference time as shown in § 5.3. Additionally, thorough ablation studies are per-formed to demonstrate the effectiveness of our approach as shown in § 5.2. 2. Related Work Tracking-by-Detection.

Tags:

  Tracking, Object, Object tracking

Information

Domain:

Source:

Link to this page:

Please notify us if you found a problem with this document:

Other abuse

Advertisement

Transcription of Track To Detect and Segment: An Online Multi-Object Tracker

1 Track to Detect and Segment: An Online Multi-Object TrackerJialian Wu1, Jiale Cao2, Liangchen Song1, Yu Wang3, Ming Yang3, Junsong Yuan11 SUNY Buffalo2 TJU3 Horizon RoboticsAbstractMost Online Multi-Object trackers perform object detec-tion stand-alone in a neural net without any input fromtracking. In this paper, we present a new Online jointdetection and tracking model, TraDeS ( Track to DEtectand Segment), exploiting tracking clues to assist detectionend-to-end. TraDeS infers object tracking offset by a costvolume, which is used to propagate previous object fea-tures for improving current object detection and segmen-tation.

2 Effectiveness and superiority of TraDeS are shownon 4 datasets, including MOT (2D tracking ), nuScenes (3 Dtracking), MOTS and Youtube-VIS (instance segmentationtracking). Project page: IntroductionAdvanced Online Multi-Object tracking methods followtwo major paradigms: tracking -by-detection [5,38,27,52,30,49] and joint detection and tracking [26,63,1,29,45,25,43,44]. The tracking -by-detection (TBD) paradigm treatsdetection and tracking as two independent tasks ( (a)).It usually applies an off-the-shelf object detector to producedetections and employs another separate network for dataassociation.

3 TheTBDsystem is inefficient and not optimizedend-to-end due to the two-stage processing. To address thisproblem, recent solutions favor a joint detection and tracking (JDT) paradigm that simultaneously performs detection andtracking in a single forward-pass ( (b)).TheJDTmethods, however, are confronted with two is-sues:(i)Although in mostJDTworks [29,45,25,50] thebackbone network is shared, detection is usually performedstandalone without exploring tracking cues. We argue thatdetection is the cornerstone for a stable and consistent Track -let, and in turn tracking cues shall help detection, especiallyin tough scenarios like partial occlusion and motion blur.

4 (ii)As studied by [9] and our experiment ( ), common re-ID tracking loss [45,25,32,51] is not that compatible withdetection loss in jointly training a single backbone network,which could even hurt detection performance to some image(a) tracking -by-DetectionDetection and tracking (c) TraDeS (Ours)Input imageInput imageLearnable NetworksForward(b) Recent Joint Data AssociationmissedmissedData AssociationPrevious FeaturesData AssociationdetectedD: Detection LayerT: tracking -related LayerRe-ID EmbeddingsTracking OffsetsDetected ObjectsTracked ObjectsDTbackboneEnhancebackbonebackbone backboneDTTDF igure of different Online MOT follows the joint detection and tracking (JDT) from mostJDTmethods, the proposed TraDeS trackerdeeply couples tracking and detection within an end-to-end and uni-fied framework, where the motion clue from tracking is exploitedto enhance detection or segmentation (omitted in the figure).

5 The reason is that re-ID focuses on intra-class variance, butdetection aims to enlarge inter-class difference and minimizeintra-class this paper, we propose a new Online joint detection andtracking model, coined as TraDeS ( Track to Detect andSegment). In TraDeS, each point on the feature map repre-sents either an object center or a background region, similaras in CenterNet [64]. TraDeS addresses the above two is-sues by tightly incorporating tracking into detection as wellas a dedicatedly designed re-ID learning scheme. Specifi-cally, we propose a cost volume based association (CVA)module and a motion-guided feature warper (MFW) module,respectively.

6 The CVA extracts point-wise re-ID embeddingfeatures by the backbone to construct a cost volume thatstores matching similarities between the embedding pairs intwo frames. Then, we infer the tracking offsets from the costvolume, which are the spatio-temporal displacements of allthe points, ,potential object centers, in two frames. Thetracking offsets together with the embeddings are utilized toconduct a simple two-round long-term data association. Af-terwards, the MFW takes the tracking offsets as motion cuesto propagate object features from the previous frames to thecurrent one.

7 Finally, the propagated feature and the currentfeature are aggregated to derive detection and the CVA module, the cost volume is employed to su-12352pervise the re-ID embedding, where different object classesand background regions are implicitly taken into is being said, our re-ID objective involves the inter-classvariance. This way not only learns an effective embeddingas common re-ID loss [45,25,32,51], but also is well com-patible with the detection loss and does not hurt detectionperformance as shown in Moreover, because thetracking offset is predicted based on appearance embeddingsimilarities, it can match an object with very large motionor in low frame rate as shown in , or even accuratelytrack objects in different datasets with unseen large motionas shown in Thus, the predicted tracking offset of anobject can serve as a robust motion clue to guide our featurepropagation in the MFW module.

8 The occluded and blurredobjects in the current frame may be legible in early frames,so the propagated features from previous frames may supportthe current feature to recover potentially missed objects byour MFW summary, we propose a novel Online multi-objecttracker, TraDeS, that deeply integrates tracking cues to assistdetection in an end-to-end framework and in return benefitstracking as shown in (c). TraDeS is a general Tracker ,which is readily extended to instance segmentation trackingby adding a simple instance segmentation branch. Exten-sive experiments are conducted on 4 datasets, , MOT,nuScenes, MOTS, and Youtube-VIS datasets, across 3 tasksincluding 2D object tracking , 3D object tracking , and in-stance segmentation tracking .

9 TraDeS achieves state-of-the-art performance with an efficient inference time as shownin Additionally, thorough ablation studies are per-formed to demonstrate the effectiveness of our approach asshown in Related was dominated by thetracking-by-detection (TBD) paradigm over the pastyears [58,6,66,52,33,5,38,48,54]. Within this frame-work, an off-the-shelf object detector [31,16] is first appliedto generate detection boxes for each frame. Then, a separatere-ID model [1,49] is used to extract appearance features forthose detected boxes. To build tracklets, one simple solutionis to directly compute appearance and motion affinities with amotion model, ,Kalman filter, and then solve data associ-ation by a matching algorithm.

10 Some other efforts [6,46,19]formulate data association as a graph optimization problemby treating each detection as a graph node. However,TBDmethods conduct detection and tracking separately, hence areusually computationally expensive. Instead, our approach in-tegrates tracking cues into detection and efficiently performsdetection and tracking in an end-to-end Detection and joint detectionand tracking (JDT) paradigm has raised increasing attentiondue to its efficient and unified framework. One commonway [63,45,25,1,62,61] is to build a tracking -relatedbranch upon an object detector to predict either object Track -ing offsets or re-ID embeddings for data association.


Related search queries