accuracy-efficiency trade-off curve.
1.1 Contributions
• A three-action adaptive scheduling framework (FULL/WARP/SKIP) formulated as a constrained
optimization over GFLOPs subject to MOTA and FPS constraints.
• Phase-correlation feature warping: a training-free, 𝒪(N logN) feature propagation method using FFT-based
translation estimation- no optical flow network required.
• A 803-parameter PolicyMLP trained by behavioral cloning in <10 minutes on CPU, outperforming hand-
tuned thresholds on heterogeneous scenes.
• Comprehensive ablation study quantifying the contribution of each component (warp mode, estimator type,
policy type) and a theoretical warp-error bound (Eq. 14).
• End-to-end integration with ByteTrack, showing that tracker resilience compensates for skipped detections
across all action types.
2. Related work
Single-stage detectors. YOLO
[6]
established real time detection as a single regression pass over a grid of anchor
boxes. YOLOv4
[11]
introduced CSPNet and PANet for multi-scale feature fusion. YOLOv8
[1]
adds an anchor-free
decoupled head, C2f cross-stag partial blocks, and Distribution Focal Loss (DFL)
[8]
:
(1)
DFL models box offsets as distributions rather than point estimates, yielding sharper sub-pixel localization
critical for the warped feature maps we propagate. Multi-object tracking. SORT
[9]
combined Kalman filtering
with Hungarian assignment at 260 Hz. DeepSORT
[10]
added Re-ID descriptors for occlusion robustness.
ByteTrack
[11]
achieves 88.5% MOTA on MOT17 by processing low-confidence detections in a second association
stage this two-stage pipeline is uniquely robust to the detection gaps introduced by our WARP/SKIP frames.
Multi-object tracking: SORT
[9]
combined Kalman filtering with Hungarian assignment at 260 Hz. DeepSORT
[10]
added Re ID descriptors for occlusion robustness. ByteTrack
[10]
achieves 88.5% MOTA on MOT17 by processing
low-confidence detections in a second association stage. This two-stage pipeline is uniquely robust to the
detection gaps introduced by our WARP/SKIP frames.
Feature propagation for video: DFF
[3]
uses a FlowNet-based feature warper to propagate intermediate CNN
activations from key frames to non-key frames, achieving 10× speedup with 8– 15% accuracy loss. FGFA
[4]
improves accuracy by aggregating features from multiple nearby frames weighted by flow similarity. Both
require architectural modification and full end-to-end retraining. Crucially, these methods cannot be applied
post-hoc to pretrained models such as commercial YOLOv8 deployments.
Adaptive inference: AdaFuse
[12]
skips redundant channels across frames based on inter-frame feature
differences. Mullapudi et al.
[5]
distil a fast student model online via reinforcement learning. Both require
modified training pipelines. Closest to our work, Zhu et al.
[3]
selectively propagate features based on a saliency
score; however, their scheduler is a binary key/non-key selection rather than our three-class adaptive
framework.
Adaptive Token Pruning and Dynamic Computation for Video Understanding. Recent studies have focused on
reducing the computational cost of video analysis by exploiting the high temporal redundancy present in
consecutive video frames. HaltingVT
[13]
introduces an adaptive token-halting strategy that dynamically removes
less informative spatial-temporal tokens during inference, thereby reducing computation while maintaining
recognition performance. Zero-TPrune
[14]
extends this idea by performing token pruning in pretrained
transformers without requiring additional training. Similarly,
[15]
improves efficiency through dynamic selection
of important spatial and temporal tokens based on video content.
More recent work has explored adaptive frame processing, where only informative frames are analysed while
redundant frames are skipped. Motion-driven adaptive frame selection methods
[16]
demonstrated that
significant computational savings can be achieved by exploiting frame-to-frame similarity. FastVID
[17]
and
Unified Spatio-Temporal Token Scoring
[18]
further improve efficiency by dynamically allocating computational
resources according to the complexity of the video content.
Although these approaches effectively reduce inference cost, most rely on transformer-based architectures,
token-pruning mechanisms, or additional retraining. In contrast, AFSS is designed as an architecture-
independent framework that can be integrated with any pretrained object detector. It achieves adaptive
computation through lightweight frame scheduling and training free phase-correlation-based feature