paper-with-me

Papers

Compact Transformer Tracker with Correlative Masked Modeling

2023-01-26 · Zikai Song, Run Luo, Junqing Yu, Yi-Ping Phoebe Chen, Wei Yang

Transformer framework has been showing superior performances in visual object tracking for its great strength in information aggregation across the template and search image with the well-known attention mechanism. Most recent advances focus on exploring attention mechanism variants for better information aggregation. We find these schemes are equivalent to or even just a subset of the basic self-attention mechanism. In this paper, we prove that the vanilla self-attention structure is sufficient for information aggregation, and structural adaption is unnecessary. The key is not the attention structure, but how to extract the discriminative feature for tracking and enhance the communication between the target and search image. Based on this finding, we adopt the basic vision transformer (ViT) architecture as our main tracker and concatenate the template and search image for feature embedding. To guide the encoder to capture the invariant feature for tracking, we attach a lightweight correlative masked decoder which reconstructs the original template and search image from the corresponding masked tokens. The correlative masked decoder serves as a plugin for the compact transform tracker and is skipped in inference. Our compact tracker uses the most simple structure which only consists of a ViT backbone and a box head, and can run at 40 fps. Extensive experiments show the proposed compact transform tracker outperforms existing approaches, including advanced attention variants, and demonstrates the sufficiency of self-attention in tracking tasks. Our method achieves state-of-the-art performance on five challenging datasets, along with the VOT2020, UAV123, LaSOT, TrackingNet, and GOT-10k benchmarks. Our project is available at https://github.com/HUSTDML/CTTrack.

📄 PDF Abstract BibTeX arXiv:2301.10938

Code (1)

hustdml/cttrack 공식 구현 pytorch

Tasks

DecoderObject TrackingVisual Object Tracking

Methods 이 논문이 사용한 방법론

Attention 설명 없음
Dense Connections Dense Connections, or Fully Connected Connections, are a type of layer in a deep neural network that use a linear operation where every input is connected to every output…
Softmax The Softmax output function transforms a previous layer's output into a vector of probabilities. It is commonly used for multiclass classification. Given an input vector $x$…
Layer Normalization Unlike batch normalization, Layer Normalization directly estimates the normalization statistics from the summed inputs…
Linear Layer A Linear Layer is a projection $\mathbf{XW + b}$.
Multi-Head Attention 설명 없음
Residual Connection 설명 없음
Vision Transformer The Vision Transformer, or ViT, is a model for image classification that employs a Transformer-like architecture over…

Similar Papers 제목 키워드 기반

LCM: Locally Constrained Compact Point Cloud Model for Masked Point Modeling

2024-05-27 · Yaohua Zha, Naiqi Li, Yanzi Wang, Tao Dai 외

The pre-trained point cloud model based on Masked Point Modeling (MPM) has exhibited substantial improvements across various tasks. However, these models heavily rely on the Transformer, leading to quadratic complexity a…

DecoderMamba

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

2023-02-06 · Yutao Cui, Cheng Jiang, Gangshan Wu, LiMin Wang

Visual object tracking often employs a multi-stage pipeline of feature extraction, target information integration, and bounding box estimation. To simplify this pipeline and unify the process of feature extraction and ta…

Object TrackingVisual Object Tracking

Correlation-Embedded Transformer Tracking: A Single-Branch Framework

2024-01-23 · Fei Xie, Wankou Yang, Chunyu Wang, Lei Chu 외

Developing robust and discriminative appearance models has been a long-standing research challenge in visual object tracking. In the prevalent Siamese-based paradigm, the features extracted by the Siamese-like networks a…

Feature CorrelationObject TrackingVisual Object Tracking

Pre-training Point Cloud Compact Model with Partial-aware Reconstruction

2024-07-12 · Yaohua Zha, Yanzi Wang, Tao Dai, Shu-Tao Xia

The pre-trained point cloud model based on Masked Point Modeling (MPM) has exhibited substantial improvements across various tasks. However, two drawbacks hinder their practical application. Firstly, the positional embed…

Decoder

CSTrack: Enhancing RGB-X Tracking via Compact Spatiotemporal Features

2025-05-26 · X. Feng, D. Zhang, S. Hu, X. Li 외

Effectively modeling and utilizing spatiotemporal features from RGB and other modalities (\eg, depth, thermal, and event data, denoted as X) is the core of RGB-X tracker design. Existing methods often employ two parallel…