Source-linked AI summary

Top-push Video-based Person Re-identification

Jinjie You, Ancong Wu, Xiang Li, Wei-Shi Zheng

arXiv:1604.08683v2cs.CV

TL;DR

Still-image re-id is limited by appearance variation and occlusion, while video adds richer cues but can make identities more ambiguous because motions and appearances overlap. The paper proposes TDL, which learns a distance model with a top-push constraint for top-rank matching. Experiments on PRID 2011 and iLIDS-VID report improvements over existing video-based and related re-id methods.

  • Problem

    Still-image re-id has limited information under illumination, viewpoint, background, and occlusion changes, while video representations can have smaller inter-class variation because people may move similarly.

  • Method

    TDL combines video features with a distance model that minimizes intra-class variation and applies a top-push constraint to optimize top-rank matching.

  • Results

    TDL improves matching performance on PRID 2011 and iLIDS-VID over existing video-based, related distance/rank-learning, and representative still-image methods.

  • Takeaways & Limitations

    Top-push distance learning provides a more effective top-rank distance model for ambiguous video-based person re-id.

  • Takeaways & Limitations

    RDC, PRSVM, and TopRank cannot run on a 64GB-RAM server for the iLIDS-VID multi-shot setting because relative-comparison triplets exceed 10^8.

Abstract

from arXiv · show

Most existing person re-identification (re-id) models focus on matching still person images across disjoint camera views. Since only limited information can be exploited from still images, it is hard (if not impossible) to overcome the occlusion, pose and camera-view change, and lighting variation problems. In comparison, video-based re-id methods can utilize extra space-time information, which contains much more rich cues for matching to overcome the mentioned problems. However, we find that when using video-based representation, some inter-class difference can be much more obscure than the one when using still-image based representation, because different people could not only have similar appearance but also have similar motions and actions which are hard to align. To solve this problem, we propose a top-push distance learning model (TDL), in which we integrate a top-push constrain for matching video features of persons. The top-push constraint enforces the optimization on top-rank matching in re-id, so as to make the matching model more effective towards selecting more discriminative features to distinguish different persons. Our experiments show that the proposed video-based re-id framework outperforms the state-of-the-art video-based re-id methods.

1. Introduction

Video-based re-identification offers richer space-time and appearance cues than still images, but similar motions can make different identities more ambiguous. TDL addresses this by optimizing top-rank matching with a top-push distance constraint, and experiments report improved performance.

  • Still-image re-id is challenged by illumination changes, viewpoint differences, complicated backgrounds, and occlusions across non-overlapping camera views.
  • Video sequences add motion, richer appearance cues, and some ability to reduce background and occlusion effects compared with still images.
  • Similar clothing and walking actions can reduce inter-class separation, making some video representations more ambiguous than still-image representations.
  • TDL combines HOG3D with pooled color-histogram and LBP features, then learns distances using a top-push constraint and intra-class variation minimization.
  • Extensive experiments on PRID 2011 and iLIDS-VID report improved matching accuracy over video-based, distance/rank-learning, and representative still-image methods.

2. Related Works

Prior video re-id methods use sequence alignment, fragment selection, or embedding recovery, but assumptions about synchronization and partial sequence use limit their scope. TDL extends top-push learning to distance metrics and latent subspaces for top-rank matching.

  • Existing video re-id methods include Dynamic Time Warping, fragment selection and ranking, and block-sparse embedding recovery.
  • These methods may assume synchronized image sequences, require difficult pairwise alignment, or ignore the integrity and richness of full video features.
  • TDL extends the top-push constraint from a linear ranking function to second-order distance metric learning.
  • Unlike a single ranking-function score, TDL searches for a latent subspace to exploit more robust latent features for person re-id.
  • TDL uses a more stringent relative comparison than LMNN and is motivated by smaller inter-class variation at the video level.

3. Approach

The approach combines space-time and appearance features with a top-push distance-learning objective that reduces positive-pair distances while separating each sample from its closest differently labeled sample. It optimizes a positive semi-definite Mahalanobis metric and projects the learned space to reduce ambiguity.

  • 3. Approach: Person-video representations combine HOG3D space-time features with average-pooled color-histogram and LBP appearance features.The two feature types capture complementary information, including temporal dynamics and stable appearance cues.
  • 3. Approach: TDL compares each positive-pair distance with the minimum distance to any differently labeled sample, rather than with every negative pair.This top-push comparison targets the nearest negative that most threatens top-rank matching.
  • 3. Approach: The objective jointly minimizes distances between same-class samples and penalizes small distances to the closest differently labeled sample.The weighting parameter α balances the intra-class and top-push terms.
  • 3. Approach: TDL learns a Mahalanobis distance D(x_i,x_j) = (x_i − x_j)⊤M(x_i − x_j) with M constrained to be positive semi-definite.The optimization uses stochastic gradient descent and projects updated matrices onto the positive semi-definite cone.
  • 3. Approach: The learned projection reduces ambiguity in the person data distribution and produces a space more favorable for classification.Figure 4 compares original two-dimensional person data with the TDL-projected data; L is obtained from M = L⊤L.

4.1. Datasets and settings

Experiments use the PRID 2011 and iLIDS-VID video re-identification datasets, with TDL evaluated through an iterative optimization procedure and rank-based matching comparisons. PRID 2011 contributes paired views from static surveillance cameras and a filtered set of 178 sufficiently long person tracks.

  • 4.1. Datasets and settings: The experiments use two publicly available video re-identification datasets: PRID 2011 and iLIDS-VID.These datasets provide video sequences for evaluating person matching across camera views.
  • 4.1. Datasets and settings: TDL optimization initializes M0 as the identity matrix, searches the smallest between-class distance, updates M by stochastic gradients, and projects it onto the positive semi-definite cone until convergence.The summarized algorithm adapts the step size according to whether the loss decreases or increases.
  • 4.1. Datasets and settings: PRID 2011 contains 200 people recorded in both of two static camera views, and the experiments select 178 people with more than 27 frames.Camera view A recorded 385 people and view B recorded 749 people; videos contain 5–675 frames, averaging 100.
  • 4.1. Datasets and settings: The same-person sequences illustrated in Figure 5 appear across different camera views.This visualization corresponds to the cross-view matching setting used in video re-identification.
  • 4.1. Datasets and settings: Table 1 reports matching rates (%) at Rank = 1, 5, 10, and 20, with best results shown in boldface.The table compares TDL with existing methods on PRID 2011 and iLIDS-VID.

4.2. Feature Extraction

The feature-extraction procedure combines frame-level appearance descriptors with video-level space-time descriptors to obtain a more abundant and robust person-video representation.

  • 4.2. Feature Extraction: Each video frame is resized to 128 × 48 pixels and divided into 155 patches of size 8 × 16 with 50% overlap horizontally and vertically.The procedure extracts appearance features at the image-frame level before combining them with video-level space-time features.

4.3. Evaluation of Comparison

TDL was compared with video-based, rank/distance/subspace, still-image-based, and multi-frame methods on PRID 2011 and iLIDS-VID. It achieved higher matching performance, while several competing methods incurred substantial computational costs in multi-frame or multi-shot settings.

  • Comparison with State-of-the-art Methods: TDL improved matching performance on both PRID 2011 and iLIDS-VID against six state-of-the-art video-based methods.The comparison included SDALF, Salience, RPRF, SRID, DVDL, and Color&LBP+DVR.
  • Comparison with State-of-the-art Methods: 21.8% higher Rank-1 matching rate was obtained by TDL than Color&LBP+DVR on iLIDS-VID.
  • Comparison with Related Methods: 56.74% Rank-1 matching rate was achieved by TDL on PRID 2011, compared with 31.69% for TopRank, 15.84% for LDA, and 27.19% for LMNN.
  • Comparison with Related Methods: TDL outperformed the compared still-image-based re-id methods on both datasets, while video-based matching exceeded matching multiple image frames.
  • Computational Considerations: RDC, PRSVM, and TopRank could not run on a 64GB-RAM server under the multi-frame or multi-shot setting because training triplets grew dramatically.

4.4. Further Evaluation of TDL

Further experiments evaluated TDL's feature components and parameter sensitivity on PRID 2011 and iLIDS-VID. Combining space-time and appearance features performed best, and α around 0.1 balanced the model's objectives.

  • Feature Components: Combining HOG3D space-time features with pooled Color&LBP appearance features achieved the best performance.Each component was effective individually, and their combination was complementary.
  • Influence of Parameters: AUC was best when α was around 0.1 on both PRID 2011 and iLIDS-VID.
  • Influence of Parameters: Removing the top-push constraint made the optimization trivial with M = O, whereas setting α = 1 discarded intra-class variation minimization and led to overfitting in top-push.

5. Conclusion

The paper proposes TDL for video-based person re-identification, using a top-push constraint to address ambiguity in video representations. Experiments on PRID 2011 and iLIDS-VID validate its effectiveness for top-rank matching.

  • TDL addresses video-based person re-identification by applying a top-push constraint to ambiguous video representations.
  • The constraint makes the distance model more effective for top-rank video-based person re-id performance.
  • Extensive experiments on PRID 2011 and iLIDS-VID validate the proposed model.
Loading 1604.08683v2…