Papers for

computer vision engineers

Papers whose findings have a practical use for this group, as judged from the abstract. Open a paper to read what it means in practice.

Lightweight method improves fusion of polarization and intensity images

LG-PF: Lightweight Confidence-Guided Polarization Image Fusion

Abstract: Polarization image fusion combines the stable luminance and structural information of the total- intensity image S0 with the material-sensitive details of the degree of linear polarization (DoLP) image. However, the reliability of DoLP varies spatially, and indiscriminate polarization transfer may amplify unstable responses or disturb the structural appearance anchored by S0. We therefore propose LG-PF, a lightweight confidence-guided framework that formulates polarization fusion as a selective residual transfer process. A Polarization Confidence Prior estimates spatially reliable polarization responses, a Mask-guided Multi-scale Fusion module regulates their transfer across three feature scales, and a Lightweight Context-aware Bounded Correction Head stabilizes local photometric and structural transitions. Confidence guidance is also incorporated into the optimization objectives to preserve reliable polarization details while suppressing unsupported responses. We also construct MSP, a multi-scene polarization fusion dataset containing 1000 pixel-aligned image pairs from 17 indoor and outdoor scene categories. LG-PF achieves the best results across all six evaluated metrics on MSP, while subset-based evaluations on PIF and GAND show promising transferability without fine-tuning. With only 0.2936 M parameters and an inference time of 21.712 ms per image, LG-PF achieves competitive fusion quality with low computational cost. The source code, dataset, and official data splits will be made publicly available upon publication.

Fri 11 SeptComputer Vision and Pattern Recognition
The gist
Polarization image fusion blends brightness and texture from regular images with special details that reveal material properties, but unreliable parts can cause problems. The authors propose LG-PF, a simple system that selectively adds trustworthy polarization details while avoiding unstable ones. They also created a new dataset to test this fusion across many kinds of scenes. LG-PF is efficient, requires little computing power, and works well across different environments without extra training.
Open 2609.12787v1

Membrane algorithm improves image segmentation with artificial protozoa optimizer

MAAPO:an innovative membrane algorithm based on artificial protozoa optimizer for multilevel threshold image segmentation

Abstract: This paper proposes a novel membrane algorithm based on artificial protozoa optimizer (MAAPO) for global optimization problems. The artificial protozoa optimizer (APO) is adopted as the base meta-heuristic algorithm due to its novelty and competitive performance. MAAPO integrates two key innovations:(1) a membrane computing (MC) framework that introduces a parallel distributed paradigm to improve population diversity and search dynamics, and (2) an enhanced autotrophic model within APO that uses a roulette-based fitness-distance balance (RFDB) mechanism for adaptive reference point selection. These strategies collectively enhance the algorithm's exploration-exploitation balance and global search capabilities. To validate its performance, MAAPO is tested against 12 advanced algorithms on the CEC2017 test suite, and further applied to the multilevel thresholding image segmentation problem using Otsu and Kapur entropy as objective functions. The quality of segmented images is assessed using peak signal-to-noise ratio (PSNR), structural similarity index (SSIM), and feature similarity index (FSIM) metrics. Experimental results demonstrate that MAAPO outperforms its counterparts, delivering superior segmentation quality. This research on MAAPO contributes an effective enhancement strategy to meta-heuristic algorithms and introduces a novel, highly applicable approach for complex image segmentation tasks.

Fri 11 SeptNeural and Evolutionary Computing
The gist
Segmenting images means dividing an image into meaningful parts, but it's tricky to do well. This paper presents a new computer method called MAAPO that mimics tiny living organisms and uses a special membrane system to search for the best way to segment images. The membrane system helps try many ideas at once, making it more likely to find a good solution. The authors show MAAPO works better than other similar methods by testing it on common benchmark problems and real images.
Open 2609.12756v1

Real-time model predicts any relations from images and text inputs

RelateAnything: Real-Time Open-Vocabulary Relation Prediction From Any Inputs

Abstract: Open-vocabulary detection accepts any class list at inference, and promptable segmentation returns regions without class names: the taxonomy has left the model and become an input. Relation prediction has not. Scene-graph models are still trained and evaluated on the 50 or 56 predicates of one annotation style, their relation head conditioned on object labels and so tied to one detector. Three obstacles explain this, none primarily modelling: no relation corpus is both free-text and verified, a label-conditioned architecture cannot accept a vocabulary it was not trained on, and the standard metric rewards agreement with the training corpus, so a larger vocabulary scores as a regression. We present RelateAnything, a 53M-parameter model taking an image and regions from any source and returning scored relations over a predicate vocabulary supplied at inference as strings. Object labels are never an input, so the region source can change without retraining, and the vocabulary is a bank of text embeddings, not a learned classifier. It runs at 20 ms/frame. Training over 19,103 predicates requires positive-unlabeled supervision and a text encoder that separates antonyms, which contrastive encoders embed at cosine 0.95. To supply the supervision we build RA-4M, 474k images and 4.3M relations over 10,102 free-text predicates, generated against numbered box markers and geometrically verified. To measure it we build OV-SGG-Bench, six axes scored across datasets that the priors standard recall rewards cannot satisfy. On three cross-dataset benchmarks and a fourth zero-shot, RelateAnything has 2.3-3.5x the mean recall of the strongest open-vocabulary method of comparable scale, margins that survive a real detector, and leads a 3B-VLM scene-graph model on both metrics at under 2% of its parameters. In-domain measurement overstates transfer gains ~5x. Model, corpus and benchmark are public.

Fri 11 SeptComputer Vision and Pattern Recognition
The gist
Most current AI models that understand relationships in images rely on a fixed set of relationship words they were trained with, limiting their ability to work with new or different vocabularies. The authors created RelateAnything, a model that can predict relationships between objects in images using any list of relationship words given at runtime, without needing retraining. It works fast and on regions of an image from any detection method. To train and evaluate it, the authors also built a large dataset of varied relationships expressed in free text and a new benchmark that tests how well these models transfer to different kinds of data. This approach improves accuracy and flexibility in detecting relationships.
Open 2609.12552v1

Multi-object tracking improved by automating hyperparameter tuning

Revisiting Multi-Object Tracking Baselines: Hyperparameter Optimization with Multi-Fidelity Greedy Coordinate Search

Abstract: Multi-object tracking (MOT) is dominated by the tracking-by-detection paradigm, whose methods typically rely on a small set of hyperparameters that are conventionally chosen by hand. Tuning them requires repeated expert-guided experimentation, while the procedures used to select reported values are often not systematically evaluated or fully documented. Hyperparameter optimization (HPO) automates this process, yet it remains rarely used in MOT, and existing studies applying HPO to MOT predate modern deep-detector-based trackers and HOTA evaluation. We systematically apply HPO across two datasets and four tracking-by-detection methods. We also propose Multi-Fidelity Greedy Coordinate Search (MFGCS), which optimizes one hyperparameter at a time by first evaluating candidate values on a small subset of scenes and re-evaluating only promising candidates on the full dataset. Across all eight tracker-dataset combinations, the Tree-structured Parzen Estimator (TPE) and MFGCS outperform both our hand-tuned configurations and the corresponding published results, with improvements of up to 4.38 and 16.05 HOTA points, respectively. MFGCS also reaches a predefined HOTA target faster than TPE in seven of the eight combinations. Within each tracker-dataset pair, all optimizers share the same search space and evaluation pipeline, isolating the effect of the search strategy. We release the code and tuned configurations to enable future work to compare against systematically optimized rather than default or manually tuned baselines.

Thu 10 SeptComputer Vision and Pattern Recognition
The gist
Tracking multiple objects in videos usually depends on settings chosen by hand, which can be slow and inconsistent. The authors showed that automatically tuning these settings with careful search methods can lead to better tracking results. They introduced a new search technique called Multi-Fidelity Greedy Coordinate Search, which tests settings on small parts of the data before expanding to the full set. This approach often found better settings faster than previous methods and improved tracking accuracy. They also shared their code and tuned settings to help others start from these better baselines.
Open 2609.12261v1

Gait emotion recognition improved with fusion and timing robustness

Single-Stream Multi-Feature Fusion with Temporal Robustness for Gait Emotion Recognition

Abstract: 3D skeleton-based gait emotion recognition faces high annotation costs, data scarcity, and poor generalization on heterogeneous data. This paper proposes SV-GCN, a single-stream multi-feature fusion framework with temporal invariance. We introduce intra-frame relative motion features to eliminate frame-rate sensitivity and embed heterogeneous cues at shallow layers, enabling early fusion without multi-stream complexity. For variable-length sequences, we design a global mask-guided valid-frame spatio-temporal graph convolution module, introducing frame-rate insensitivity for the first time in this domain. On the E-Gait dataset, our method achieves performance comparable to state-of-the-art while demonstrating strong generalization across varying sequence lengths and frame rates, offering a viable pathway for pre-training on large-scale skeleton-based action recognition datasets.

Thu 10 SeptComputer Vision and Pattern Recognition
The gist
Recognizing emotions from the way people walk is hard because it needs lots of labeled data and current methods don’t work well on different kinds of data. The authors propose a new approach called SV-GCN that combines multiple features early and handles videos of different lengths and speeds better than before. Their method reduces sensitivity to the frame rate, meaning it works well even if the walking video is recorded at different speeds. Tests show it matches the best current results and generalizes better to varied data.
Open 2609.11680v1

LoopVAE reduces parameters for image tokenization with recurrent depth

LoopVAE: Recurrent Depth Across Scales for Visual Tokenization

Abstract: Hierarchical visual tokenizers typically allocate different processing blocks to different spatial scales. We ask how much of this computation can use the same parameters. LoopVAE reuses a scale- and loop-conditioned core within and across scales, while keeping resolution-changing transitions independent. A four-block core executes 28 block applications per encoder or decoder. On ImageNet-256, the 29M-parameter convolutional model reaches 0.28 rFID and 32.54 dB PSNR under an approximately 30-epoch two-stage training budget, using approximately 65% fewer parameters than the 84M reference VAEs. A non-adversarial Transformer ablation with the same execution graph finds competitive PSNR and SSIM under global sharing, although unshared blocks improve LPIPS. Targeted loop interventions show that completing the trained recurrence improves reconstruction and that even small feature updates can have substantial downstream effects. Truncation also exposes output-range errors, distinguishing useful recurrent computation from reliable early exit. Runtime profiling reveals the execution tradeoff: fewer stored weights require more arithmetic and longer runtime in the tested configurations. With convolutional and Transformer operators and single- or multi-resolution latent interfaces, LoopVAE establishes recurrent depth across scales as a parameter-sharing design axis for visual tokenization.

Thu 10 SeptComputer Vision and Pattern Recognition
The gist
Encoding images efficiently can require a lot of computer memory and calculations. The authors introduce LoopVAE, a system that reuses parts of its processing steps multiple times across different image sizes to cut down on the number of unique parts needed. This reuse leads to fewer parameters while keeping image quality good on a standard dataset. The study also compares different designs and shows that repeating processing steps can have meaningful effects on the final image reconstruction.
Open 2609.11516v1

FreeFlow transformer improves optical flow accuracy without bias

FreeFlow: A Bias-free Hierarchical Transformer for Optical Flow Estimation

Abstract: Optical flow methods typically rely on task-specific inductive biases, such as correlation volumes, feature warping, and iterative refinement, among others, to reach high accuracy. While effective, such biases constrain the model to predefined heuristics, which can limit its expressivity and lead to more complex pipelines and additional computational cost. We present FreeFlow, a hierarchical transformer built without any flow-specific components, using instead a single feed-forward encoder--decoder. FreeFlow combines three attention variants: window attention for local processing, shifted-window attention for cross-window information exchange, and a global attention operating at a reduced resolution. The resulting architecture scales naturally with model capacity, enabling a consistent accuracy gain from small to large variants. Despite the absence of standard inductive biases, FreeFlow achieves state-of-the-art results on major benchmarks, including Sintel (0.68/1.48 EPE on Clean/Final), KITTI-2015 (3.23 Fl-all), and Spring (3.192 1px), while remaining memory efficient at 1080p inference.

Thu 10 SeptComputer Vision and Pattern Recognition
The gist
Optical flow measures how things move between two images, useful for things like video editing or self-driving cars. Most methods use specific rules to do this accurately, which can make them complicated and limited. The authors created FreeFlow, a model that doesn't rely on these rules but uses a special kind of neural network called a transformer to learn movement directly. Despite ignoring traditional methods, FreeFlow matches or beats top results on popular tests and works efficiently on high-resolution images.
Open 2609.11486v1

Calibrated uncertainty scores improve model efficiency and accuracy

Calibration-Aware Uncertainty Cascades for Efficient Heterogeneous Model Collaboration

Abstract: Heterogeneous model collaboration seeks to exploit the complementary strengths of different models to balance predictive performance and inference cost. Existing approaches typically rely either on trained routers, which tie routing decisions to a fixed task and model pool, or on raw-confidence cascades, whose thresholds lack consistent reliability semantics across heterogeneous models. Consequently, these approaches adapt poorly to changing model pools and deployment budgets. We propose Calibration-Aware Uncertainty Cascades (CAUC), a simple post-hoc framework that independently calibrates each model's confidence and selects deployment policies using validation data. The resulting calibrated confidence scores establish a common reliability scale for accepting an early prediction, invoking a stronger model, or selectively combining model outputs. This unified decision criterion decouples deployment policies from any particular model pool or operating budget. We further show theoretically that calibration gives confidence thresholds an explicit selective-risk interpretation, whereas uncalibrated scores offer no comparable reliability guarantee. Extensive experiments demonstrate that, across six language benchmarks, CAUC achieves an average relative accuracy improvement of 1.9% over strong-model-only inference while avoiding approximately 47% of strong-model calls. On image classification benchmarks, it maintains or improves predictive performance while reducing measured GFLOPs by up to 57%.

Thu 10 SeptArtificial Intelligence
The gist
Getting the best results from multiple AI models can be tricky because their confidence scores don’t always mean the same thing. The paper presents a way to adjust each model’s confidence, so their scores are reliable and can be compared fairly. This helps decide when a simpler model is good enough or when to use a stronger one, without sticking to fixed rules. Their method lets systems save time and computing power while keeping or improving accuracy on language and image tasks. It works well across different models and changing conditions.
Open 2609.11446v1

Soft prompting improves few-shot adaptation of vision language models

Your Model Already Knows Don't Teach It, Learn to Ask It: Soft Prompting for Few-Shot Adaptation of Vision-Language Models

Abstract: We address few-shot object detection with vision-language models (VLMs) in out-of-domain settings such as aerial, industrial, and medical imagery, using only ten annotated images for supervision. Existing adaptation methods are discrete prompt optimization and LoRA fine-tuning. We revisit a third option: soft prompting, where a small number of continuous prompt tokens are optimized while the pretrained backbone remains frozen. We identify two key design choices. First, placing prompt tokens at the cross-modal boundary between visual and text tokens outperforms other placements (10.0 vs. 8.4 mAP). Second, initializing prompts from the empty space token outperforms semantic and random initialization. With these choices, one to three learned tokens (7,168 parameters on average) match the best LoRA configuration on Roboflow20-VL (14.2 mAP, 10-shot) while training over 20,000x fewer parameters. Soft prompting remains harder to optimize, exhibiting higher variance across random seeds. Unlike LoRA, however, it causes no forgetting: the LoRA rank matching our accuracy reduces NaturalBench VQA accuracy by 35% relative, rising to 56% at the largest rank, whereas soft prompting leaves pretrained performance unchanged. The learned tokens behave like prompts rather than weights. They transfer to a newer model without retraining (+0.8 mAP on Qwen3.5-9B) and can be verbalized into readable prompts competitive with prompt-search methods (matching DetPO and outperforming GEPA). The approach also extends beyond detection. On RoboCasa manipulation tasks, the frozen $π_{0.5}$ vision-language-action policy benefits from soft prompting, matching the LoRA baseline on two of three tasks when tokens are placed at the gradient bottleneck. These results suggest modern VLMs already encode much of what is needed for specialized domains; the challenge is learning how to ask.

Thu 10 SeptComputer Vision and Pattern RecognitionArtificial IntelligenceMachine Learning
The gist
The paper looks at how to help large vision-language AI models learn to identify objects in new types of images using only a few examples. The authors found that instead of retraining or fine-tuning a lot of the model, they could teach the model by adding just a few special continuous prompt tokens. This method, called soft prompting, keeps most of the original AI model unchanged and reduces forgetting. It also works well on different tasks and can transfer between model versions. Essentially, the model already knows what it needs; we just need to learn how to ask it the right way.
Open 2609.11310v1

TailProp adapts vision models with two flexible spatial mixing styles

TailProp: content-adaptive light- and heavy-tailed propagation for vision

Abstract: Science-inspired vision models show that explicit propagation dynamics can provide structured and interpretable alternatives to conventional token mixing. Existing formulations, however, typically construct and adapt visual propagation within a particular dynamical family, while visual representations can require substantially different spatial interactions across samples, channels, and network stages. We explore cross-regime adaptive propagation and introduce TailProp, a hierarchical vision backbone built upon the Tail Propagation Operator (TPO). TPO uses Gaussian and Cauchy stable-process propagators as complementary bases with rapidly decaying and heavy-tailed spatial influence, and predicts a content-conditioned channel-wise coefficient to adaptively combine them. Because this coefficient is spatially shared, the two responses are fused directly in the DCT domain with a single DCT/IDCT pair, yielding $O(N^{1.5})$ spatial mixing for square feature maps with $N=HW$ and fixed channel width. Across image classification, object detection, semantic segmentation, robustness, and cross-backbone restoration, TailProp consistently outperforms matched propagation baselines; TailProp-B reaches 84.4% Top-1 accuracy on ImageNet-1K, 50.3/44.8 box/mask AP under the 3x Mask R-CNN schedule, and 50.8% mIoU on ADE20K. Controlled ablations further show that these gains are not explained by single-basis propagation, an additional same-family branch, or within-family adaptive order alone, supporting complementary two-basis propagation as an effective design principle for visual representation learning.

Thu 10 SeptComputer Vision and Pattern RecognitionMachine Learning
The gist
Understanding images in computers often involves mixing information across pixels in ways that change for different pictures, parts of the image, or processing steps. The authors propose TailProp, a new approach that combines two different ways of mixing information—one that focuses on nearby pixels and one that reaches far away—to better adapt to different needs. This method mixes these influences efficiently and consistently improves performance on many vision tasks like classification and detection. Tests show using both types of mixing together works better than just one type alone.
Open 2609.11081v1

HiPerViT improves texture recognition using texture statistics

HiPerViT: A Hierarchical Perceiver-Vision Transformer Architecture for Multi-Scale Texture Recognition

Abstract: Texture recognition remains challenging for modern vision models because discriminative evidence is often carried by higher-order spatial statistics rather than by object shape alone. While Vision Transformers provide strong long-range modeling capacity, their standard object-centric representations do not explicitly expose such statistical structure, which limits texture sensitivity in fine-grained recognition settings. We present HiPerViT, a compact vision-only architecture that injects an explicit second-order statistical prior into a transformer-based recognition pipeline. The method combines global and local image views with a compact bilinear descriptor encoded as a statistical token, and integrates this token with first-order spatial representations through Perceiver-style latent distillation. This design enables direct interaction between spatial tokens and second-order feature co-occurrence statistics, providing the model with explicit access to texture-relevant information without requiring multimodal pretraining or ensemble construction. Across six texture recognition benchmarks, HiPerViT achieves consistent improvements over strong vision-only baselines under the reported evaluation protocols, including gains of +3.05 percentage points on DTD, +10.48 on GTOS-Mobile, and +10.10 on 1200Tex. Beyond benchmark performance, our analyses show that these gains are largely invariant to the backbone depth used to extract second-order statistics and to the ordering of interaction and distillation stages. This pattern suggests that the primary source of improvement is not a specific fusion topology, but the explicit availability of second-order statistical information as a first-class representational signal. These results support explicit statistical tokenization as an effective and robust design principle for texture-centric visual recognition.

Thu 10 SeptComputer Vision and Pattern Recognition
The gist
Recognizing textures in images is hard because important details come from how parts of an image relate to each other, not just the shape of objects. The authors designed HiPerViT, a vision transformer that includes special tokens representing these texture details as statistical information. This helps the model better understand textures without needing extra training methods, and it performs better than other vision-only models on multiple texture tests. They found that having explicit texture statistics available is key to the improvement, regardless of the specific model design choices.
Open 2609.10917v1

Reliability-aware fusion improves predicting image metadata under uncertainty

RiVaT-Fuse: Reliability-Calibrated Variational Tensor Fusion for Multimodal Prediction under Modality Uncertainty

Abstract: Image-metadata prediction requires fusing heterogeneous evidence whose reliability can vary across samples and latent factors. Existing representation-level fusion methods typically choose an aggregation architecture, such as concatenation, gating, conditional modulation, or attention, without explicitly defining what the fused representation should mean under modality uncertainty. We propose RiVaT-Fuse, a reliability-calibrated variational tensor fusion framework that defines fusion as sample-wise latent-state estimation. Rather than producing a fused vector by direct aggregation, RiVaT-Fuse estimates a consensus latent state through a variational objective that balances image evidence, metadata evidence, structured cross-modal interaction, and stability. The resulting framework replaces scalar modality confidence with matrix-valued trust geometry, decomposes interaction into additive, multiplicative, and relational components, and couples the latent state with conditional robustness and structured multi-task prediction. We provide well-posedness and stability interpretations of the latent solve and instantiate the framework with efficient low-rank-plus-diagonal trust operators. On an image-level image-metadata prediction benchmark, RiVaT-Fuse achieves the strongest overall predictive rank among direct representation-level baselines while improving probability and label stability under perturbation.

Wed 9 SeptMachine LearningComputer Vision and Pattern Recognition
The gist
Predicting information from images combined with other data sources can be tricky when some data is less reliable. The authors created a method called RiVaT-Fuse that blends image and metadata by estimating a shared hidden state, considering how trustworthy each source is for every example. This clever approach uses mathematical tools to better handle uncertainty and interactions between data, leading to more stable and accurate predictions than existing methods. Their approach works well on benchmarks, showing improved prediction and consistency when data is noisy.
Open 2609.10798v1

Enhanced deformable convolution improves image segmentation accuracy

Enhanced Deformable Convolution with Center-invariant Offset and Edge-aware Mask

Abstract: Deformable convolution networks have recently become popular for many computer vision tasks, especially for semantic segmentation, because of their exceptional capabilities in dynamic spatial modeling. However, due to the dense deformable offsets and the lack of longer-range dependencies, they can not fully adopt proper and precise deformations for feature representations. To tackle the issues, in this paper, we propose Enhanced Deformable ConvNets (EDCN) for semantic segmentation. Specifically, a novel Enhanced Deformable Convolution (EDC) is exploited in the decoder, which integrates the Center-invariant Offset Module (COM) and Edge-aware Mask Module (EMM). The COM employs larger kernels and eliminates deformations at the kernel center, obtaining offsets that are more in line with the target from richer spatial information. Concurrently, the EMM obtains the significance of image content via Sobel edge detection, then selectively applies deformations based on the content significance, minimizing unnecessary deformations associated with relatively less important information, thereby avoiding impact from less informative regions. Experiments show that EDC outperforms state-of-the-art deformable convolution variants, including Deformable ConvNets V1-V4 and Entire Deformable ConvNets, across mainstream segmentation datasets with various decoder settings. Moreover, ablation studies confirm the effectiveness of each component. In addition, visualizations illustrate that EDC enhances spatial adaptation and target focus. We further analyze the extendibility of EDC to larger kernels on the image classification benchmark. Code will be publicly released.

Wed 9 SeptComputer Vision and Pattern Recognition
The gist
Image segmentation is a way computers identify objects in pictures, but it can be tricky when the shapes are complex. The authors found that existing methods struggle to adapt shapes precisely and miss important details. They improved these techniques by using a method that focuses on the center of shapes and pays more attention to edges in images. This makes the computer better at recognizing and separating objects in pictures.
Open 2609.10387v1

Vision language encoders improve with embedding space perturbations

Isotropic Embedding Perturbations for Robust Vision Language Encoders

Abstract: Data augmentation is fundamental to training modern deep vision and multimodal models. While individual methods, such as RandAug, CutMix, Mixup, RandErase, and DropPath, offer strong regularization effects, their combined use has saturated in performance due to overlapping functionalities, and aggressive pixel-level manipulations may disrupt delicate cross-modal alignment. This saturation motivates the search for a new augmentation axis within the embedding space rather than the input space. We introduce Aether, a simple plug-in method that applies diffusion-style random perturbations in the embedding space via controlled alpha-mixing, specifically designed to provide isotropic regularization that remains semantically consistent. Inspired by feature-space perturbations in language models and image degradation in generative pretraining, Aether induces mild yet effective perturbations that smooth the representations without compromising the fine-grained structural information required for strong vision-language encoders. Across diverse architectures and across multiple recognition tasks, Aether delivers consistent gains over the advanced recipe combining CutMix, Mixup, DropPath, and RandAug---a level of improvement rarely observed with modern augmentation alternatives. Notably, Aether demonstrates superior effectiveness in multi-modal alignment, succeeding where traditional pixel-space augmentations fail by providing a stable, isotropic regularization signal that respects the integrity of the high-dimensional feature space.

Wed 9 SeptComputer Vision and Pattern Recognition
The gist
Training computer models that understand images and words together usually involves changing the image data in different ways to help the model learn better. However, these usual image changes have started to hit performance limits and can mess up the connection between images and words. The authors of this paper introduced a new way to add small, controlled changes not to the image itself but to the model's internal understanding space. Their method, called Aether, gently mixes in random noise in a balanced way, helping the model get better without losing important details. This approach consistently improved performance across different tasks and models, especially in connecting images and words more reliably than older methods.
Open 2609.10292v1

Compositional generalization improves category discovery with mixed known and unknown data

CoGe-GCD: Reframing Generalized Category Discovery with Compositional Generalization

Abstract: Generalized Category Discovery (GCD) assigns unlabeled instances, mixed with labeled data, to known or novel categories, requiring human-like compositional reasoning: reusing primitives learned from known classes and deciding when new combinations imply new categories. Existing GCD methods operate on unstructured token features and struggle to extrapolate to novel compositions. We propose CoGe-GCD, which rethinks GCD through compositional generalization with two coupled stages. (i) Compositional Perception structures patch tokens by mapping them to a small vocabulary of primitives and refining token embeddings via competitive token-primitive assignment and information passing, yielding coherent groups for discovery. (ii) Generalizing Induction exploits the induced geometric structure and applies a structure-preserving calibration over spatial relations, maintaining probabilistic semantics while improving extrapolation to unseen primitive combinations. CoGe-GCD is implemented as an inductive-bias module between backbone and projection head, without modifying heads or losses, and can be plugged into diverse GCD frameworks. On standard benchmarks, it consistently improves all-class accuracy, unknown-class number estimation, and geometric quality, with marginal computational overhead. Code is available at https://github.com/lytang63/CoGe-GCD.

Wed 9 SeptMachine Learning
The gist
Sometimes computers need to recognize both familiar and entirely new categories in a mixed set of items. Current methods struggle when new categories are made from parts of the known ones combined in novel ways. The authors introduce CoGe-GCD, which helps computers break down images into basic parts and then use spatial relationships to better guess new categories. This method can slot into existing systems and improves accuracy with little extra cost.
Open 2609.10158v1

Latent bridge matching improves albedo estimation with shading conditioning

Albedo Estimation via Latent Bridge Matching

Abstract: Recent advances in Intrinsic Image Decomposition (IID) have increasingly relied on generative models. However, progress remains limited by three key challenges: (a) insufficient physical consistency, (b) high computational cost at inference time, and (c) limited generalization capabilities. In this work, we show that latent bridge matching (LBM) effectively addresses these limitations for albedo estimation. We introduce a novel LBM-based architecture that enforces physical consistency through a pixel reconstruction loss, benefits from the inherent efficiency of LBM low-cost inference, and improves generalization across diverse datasets by incorporating a shading conditioning. In this extended version, we additionally show that conditioning the shading estimator itself on the predicted albedo further improves reconstruction fidelity, and we benchmark our best model against stateof-the-art IID methods across five real and synthetic datasets.

Wed 9 SeptComputer Vision and Pattern RecognitionArtificial Intelligence
The gist
Albedo estimation is about figuring out the true color of objects in images, separate from lighting effects. The authors propose a new method called latent bridge matching (LBM) to improve this estimation by making the results more physically consistent, faster to compute, and better at handling different types of images. They enhance their method by conditioning on shading information and making shading prediction depend on estimated albedo, which helps create more accurate image reconstructions. Their approach performs well compared to other state-of-the-art methods on several datasets.
Open 2609.09884v1

Tunable wavelet filters improve image classification and anomaly detection

Layerwise Tunable Lifting Scheme for the Convolutional Neural Network

Abstract: This work introduces a family of tunable lifting schemes for biorthogonal wavelet filter banks. We propose three lifting strategies: low-pass tuning (LS-LayLatt-LP), high-pass tuning (LS-LayLatt-HP), and a sequential lifting scheme that jointly adapts low- and high-frequency branches (LS-LayLatt-Sequential). All proposed designs are formulated using a lattice-based lifting structure, which guarantees invertibility and stability for arbitrary parameter values within the lifting functions. We evaluated the proposed methods by integrating them into a ResNet-18 backbone for image classification on the Describable Textures Dataset (DTD), as well as for anomaly detection on hazelnut images from the MVTec-AD dataset and private KRC102S dataset. Experimental results demonstrate consistent performance improvements across all evaluated tasks.

Wed 9 SeptComputer Vision and Pattern Recognition
The gist
This paper tackles a problem in computer vision where machines need to recognize patterns and detect unusual items in images. The authors introduce a way to adjust the filters inside neural networks to better capture details at different frequencies. They create three tuning strategies that keep the system stable and reversible. Testing their approach in standard image recognition and anomaly detection tasks shows that it improves performance consistently.
Open 2609.09827v1

Image prototypes help models adapt to new data without forgetting

Distilling Image Prototypes for Guided Test-Time Adaptation

Abstract: Test-Time Adaptation (TTA) enhances the robustness of models against distribution shifts but faces two critical challenges: error accumulation from noisy pseudo-labels and catastrophic forgetting of source knowledge. Uncertainty-based approaches designed to mitigate error accumulation often yield overconfident or computationally expensive estimates, while strategies intended to prevent forgetting via prototype replay rely on static representations that easily become misaligned as the model adapts. To address these issues, this paper proposes a novel framework, Distilling Image Prototype for Guided Test-Time Adaptation (DIPTTA). The core of the proposed approach is the introduction of a Distill Image Prototype (DIP), a compact set of synthetic images that serves as a dynamic and regenerative anchor of source knowledge. This prototype enables a dynamic feature replay mechanism that continuously generates feature prototypes aligned with the current state of the model, thus effectively preventing catastrophic forgetting. Furthermore, the DIP anchors a source-calibrated uncertainty estimation method, which provides a less biased measure of sample reliability by leveraging stable source knowledge, thereby robustly suppressing error accumulation. Extensive experiments on multiple benchmarks demonstrate that DIPTTA significantly outperforms state-of-the-art methods, particularly under severe domain shifts. The source code is available at https://github.com/LiwenWang919/DIPTTA.

Wed 9 SeptComputer Vision and Pattern RecognitionArtificial Intelligence
The gist
Machine learning models often struggle when used in new situations different from what they were trained on. This paper presents a method where a small set of synthetic images acts like a memory anchor, helping the model remember old knowledge while learning from new data. This approach also improves the way the model judges its own uncertainty, reducing mistakes from wrong guesses. The authors’ method shows better results than other techniques, especially when conditions change a lot.
Open 2609.09737v1

Feed-forward 3D models improve image matching with new training approach

RoMa-$Ω$: What Feed-Forward 3D Models Know About Image Matching

Abstract: Learned image matching has experienced significant progress in recent years, culminating in robust and accurate matchers such as RoMa, whose robustness is often attributed to its use of frozen DINO features. In a parallel development, feed-forward reconstruction models, such as VGGT, have been trained on ever-growing datasets to accurately regress dense 3D point maps and camera poses. The distinction between matchers and feed-forward reconstruction models has become increasingly blurred with the introduction of matching losses in models such as MASt3R and VGGT-$Ω$. This raises a natural question: what do feed-forward 3D models know about image matching? In this work, we answer this question by analyzing three scenarios: (i) zero-shot matching of patch features, (ii) direct matching of 3D point predictions, and (iii) training a full matcher on top of the learned representations. We find that, despite performing poorly in zero-shot matching, especially in later layers, feed-forward reconstruction models provide strong representations for linear probing and full matching pipelines. We further show that, even without any training, their raw predictions alone enable competitive matching, albeit only under moderate viewpoint changes and modality gaps. Based on these insights, we retrain RoMa v2 by replacing its DINO backbone with VGGT-$Ω$. Our resulting model, \ours, outperforms state-of-the-art matchers on a wide range of benchmarks, e.g. +8.1 mAA compared to RoMa v2 on WxBS.

Tue 8 SeptComputer Vision and Pattern Recognition
The gist
Matching points between different images is important for many computer vision tasks. The authors studied whether models trained to directly predict 3D shapes and camera positions also understand how to match image details. They found that although these 3D models don't perform well at matching without extra help, their learned features are very useful when combined with additional training. Using this insight, they built a better image matcher that works well across various challenges.
Open 2609.09507v1

Projected power method achieves near exact permutation synchronization recovery

Recovery Theory for Projected Power Iterations in Permutation Synchronization

Abstract: We study the projected power method (PPM) for synchronizing \(n\) unknown permutations of \(m\) objects under a possibly sparse uniform corruption model. Each pair is observed with probability \(p\), and an observed measurement is uncorrupted with probability \(π_0\) and is otherwise an independent uniform permutation. Under \(\log m=o(npπ_0^2)\), we prove exact one-step recovery (with high probability) of each prescribed block for an independent estimate with a fixed positive majority of correct blocks. When \(np\ge C_0\log n\) and \(m=o(npπ_0^2)\), we prove that one high-probability event yields a block-error contraction simultaneously for every estimate whose optimally aligned error is at most \(0.5-ε\). The contraction factor is \(O(m/(npπ_0^2))\) and the error floor is \(O(e^{-cnpπ_0}+e^{-cnpπ_0^2}+{\log n}/{n})\). Consequently, one update maps every possibly data-dependent estimate in this basin to vanishing block error, and all subsequent iterates remain almost exact uniformly over the iteration index. The one-step and trajectory results extend to independent, non-identically distributed, permutation-valued corruptions with mean \(m^{-1} \mathbf{1}\mathbf{1}^{\top}\). Under the uniform model, a reference-block spectral initializer has aligned block error \(O_{\mathbb P}(m/(npπ_0^2))\), yielding an end-to-end almost-exact recovery guarantee. Under a stronger all-block signal condition, PPM reaches exact recovery after finitely many iterations. The theory transfers exactly to partial permutations with common support; for varying supports, we establish deterministic and probabilistic co-visibility margins.

Tue 8 SeptInformation Theory
The gist
This paper studies how to accurately match multiple scrambled sets of items despite errors, using a mathematical approach called the projected power method (PPM). The authors show that, with enough observations and some initial accuracy, PPM can quickly improve guesses and recover the correct item arrangements nearly perfectly. Their results apply even when the data has random noise and when some items are missing or partially matched. They also provide guarantees on how fast and reliably the method converges to the right solution.
Open 2609.09502v1

Point4D reconstructs long-term 3D motion tracks from videos

Point4D: Long-range 4D Motion Reconstruction

Abstract: We introduce Point4D, a feed-forward model for 4D reconstruction of long-range video sequences. Point4D is able to reliably infer dense per-point 3D trajectories across multi-hundred-frame videos, unlike existing 4D methods that are limited to short input windows of at most a few dozen frames. A key innovation that enables this is our flexible 3D query-based motion decoder that decouples trajectory prediction from image-plane visibility. The predicted 3D endpoints are then directly re-queried in the next chunk without re-projection or matching. Furthermore, we show that extracting and reusing a visual descriptor from an arbitrary frame where the point is visible leads to better performance than relying solely on the source patch. Overall, Point4D achieves state-of-the-art performance across diverse long-video tracking benchmarks spanning over 200 frames and largely outperforms previous feed-forward 4D method. Project page: https://point-4d.github.io

Tue 8 SeptComputer Vision and Pattern Recognition
The gist
Tracking how points move in 3D over a long video is hard because existing methods only handle short clips well. The authors created Point4D, a model that predicts where each point goes through hundreds of video frames without needing to check the image repeatedly. By cleverly reusing information from frames where points are visible, Point4D builds detailed 3D paths more reliably. This lets it keep track of motion across long videos better than previous quick methods.
Open 2609.09145v1

Segmentation model separates meaning and location for better masks

SeGDeP: Semantic- and Geometric-Aware Decoupled Prompts for Reasoning Segmentation

Abstract: Reasoning segmentation converts an implicit linguistic conclusion into a precise mask, requiring both semantic identification and spatial grounding. Existing MLLM-segmenter interfaces either use a special trigger or compress both signals into one context, although they receive different supervision and fail differently. This coupling obscures whether a failure arises from target interpretation or from localization. We present SeGDeP, an explicit what-where interface. A semantic prompt branch and an independent geometric projection path transform resolved MLLM states into semantic features and a DETR-predicted box, which jointly condition a SAM 3 mask decoder. Training first aligns this executable interface, then uses group reward-decoupled policy optimization (GDPO) to balance format, box-IoU, and mask-IoU feedback. SeGDeP-4B reaches 82.7 average cIoU over eight RefCOCO-family splits and 66.0/59.6 gIoU on ReasonSeg val/test while adapting only 0.38% of Qwen3-VL parameters through LoRA. Controlled stage-wise ablations, gradient diagnostics, and prompt interventions further show that the two paths develop complementary semantic and geometric specialization rather than duplicating the same evidence.

Tue 8 SeptComputer Vision and Pattern Recognition
The gist
Identifying the exact area that a language description refers to in images is hard because it needs understanding what something is and where it is separately. The authors created a method that handles the meaning and the location parts independently before combining them, making it easier to pinpoint the right area. Their approach improves accuracy by using separate paths for semantic meaning and geometric location to guide the image mask creation. This helps machines better interpret instructions to highlight image regions precisely.
Open 2609.08867v1

Oscillatory predictive learning improves vision model defenses without extra training effort

Neither Adversarial Training Nor Purification: Emergent Adversarial Robustness from Oscillatory Predictive Learning

Abstract: Adversarial robustness in computer vision is still largely achieved through adversarial training or test-time adversarial purification, both of which introduce significant computational overhead by generating adversarial examples during training or performing iterative denoising at test time. We study whether empirical robustness can instead emerge from architectural and representation-learning inductive biases. We introduce Oscillatory Predictive Learning (OPL), a two-stage framework that combines Artificial Kuramoto Oscillatory Neurons (AKOrN) with predictive self-supervised pretraining using X-PhiNet. Because our default checkpoint uses randomized initial oscillator states, we compare it with other randomized adversarial defense methods that provide precise, reproducible, and strong attack protocols. Experiments on CIFAR-10 and CIFAR-100, with additional corruption evaluation on CIFAR-10-C, demonstrate that our method achieves competitive results under the AutoAttack-rand evaluation protocol. On CIFAR-10 and CIFAR-100, OPL attains 76.63$\pm$0.76$\%$ and 50.44$\%$ robust accuracy, respectively, under $\ell_\infty$, $ε=8/255$, AutoAttack-rand with EoT $K=20$.

Tue 8 SeptMachine LearningArtificial Intelligence
The gist
It is hard to make computer vision systems that don't get fooled by tricky input images called adversarial attacks. Usually, defenses require extra work during training or testing, which slows things down. The authors show that by using special oscillating neuron models and a self-teaching step, the system naturally becomes better at resisting attacks. They achieved strong defense results on popular image datasets without the usual time-consuming steps.
Open 2609.08683v1

Mars clip improves zero shot image segmentation accuracy

MARS-CLIP: Multi-Resolution and Attention Refined Zero-Shot Image Segmentation

Abstract: Contrastive Language-Image Pre-training (CLIP) has demonstrated impressive capabilities in zero-shot transfer but often struggles with dense prediction tasks due to low spatial resolution and the loss of structural information. To address these limitations, we propose MARS-CLIP (Multi-resolution and Attention Refined Segmentation for CLIP), a novel framework for zero-shot semantic segmentation. Our approach introduces two key strategies: (i) a multi-resolution feature extraction module that fuses local fine-grained features with global context to overcome input resolution constraints, and (ii) an attention refinement mechanism that injects spatial and color biases from intermediate layers into the final self-attention block to accurately restore object boundaries. A set of experiments on six public datasets demonstrates that MARS-CLIP significantly outperforms state-of-the-art methods.

Tue 8 SeptComputer Vision and Pattern Recognition
The gist
Image segmentation means breaking an image into meaningful parts, like objects, without training on those exact images beforehand. The authors show that a popular AI model called CLIP struggles to do this well because it loses detail and context in the image. They designed a new system, MARS-CLIP, that looks at images at different sizes and pays special attention to spatial details and colors. This helps the system better recognize and outline objects it hasn't seen before, improving performance on several tests.
Open 2609.08283v1

Single image analysis reveals repeated objects for better modeling

Bottom-up Modeling of Repeated Elements via Single Image Analysis-by-Synthesis

Abstract: We address the problem of discovering repeated elements from a single image. In contrast to existing approaches that depend on large annotated datasets, curated multi-image collections, or object segmentation masks, we show that a single image can suffice to learn a meaningful object model in a completely bottom-up fashion, without any prior knowledge beyond a coarse scale prior. Our method learns a tunable image-space prototype of the repeated elements through a reconstruction objective, enabling the model to identify and synthesize consistent object instances within the same image. Experiments on 116 real images from the FSC-147 dataset demonstrate that our method successfully learns coherent element models and captures intra-category variation on challenging images. Qualitative results reveal superior reconstructions and interpretable decompositions compared to classical decomposition, joint alignment, and 3D object modeling methods, while maintaining a simple 2D formulation. These results suggest that meaningful object discovery can emerge from single image learning alone.

Mon 7 SeptComputer Vision and Pattern Recognition
The gist
Finding repeated objects in images usually needs many pictures or special labels, but this work shows it can be done using just one image. The authors developed a method that learns what the repeated parts look like by rebuilding the image from small pieces it finds on its own. Their experiments show that the method can find consistent repeated elements even in complicated pictures, producing clear results. This suggests that understanding repeated objects does not always require lots of data or prior knowledge.
Open 2609.07939v1

Text aligned vision model improves fine detail puzzle reasoning and segmentation

TDDN: Text-aligned Diffused DINO Network for Puzzle Understanding

Abstract: Structured visual reasoning, such as image puzzles, demands fine-grained visual perception, an ability current Vision Language Models (VLMs) lack. VLMs built on CLIP-based ViT backbones trade fine-grained detail for high-level semantics, and we show this loss propagates downstream. To recover it, we fuse DINOv3 and CleanDIFT representations into a perception encoder (DiffusedDINO) and align it with RoBERTa-L, yielding a text-aligned model TDDN that preserves this perceptual advantage: with frozen backbones and only $\sim$590K alignment pairs, TDDN matches CLIP on image-text retrieval, surpassing it on three of four settings. It does so while more than tripling CLIP's dense-prediction accuracy (ADE20K 5.20 $\to$ 18.11 mIoU, COCO-Stuff 7.35 $\to$ 24.44), despite CLIP's massive training corpus. TDDN leads on segmentation benchmarks among general-purpose contrastive encoders, including SigLIP$\,$2. We further introduce Puzzle Perception, a segmentation and visual question answering dataset that probes fine-grained spatial understanding, on which TDDN doubles CLIP's segmentation accuracy (11.04 $\to$ 22.51 mIoU).

Mon 7 SeptComputer Vision and Pattern RecognitionArtificial Intelligence
The gist
Understanding images like puzzles needs very detailed visual perception, which existing vision language models often miss because they focus more on general meaning than fine details. The authors combined two different image representations into a new model called TDDN, which aligns better with language and captures fine visual details. This model matches or beats existing ones in finding good matches between images and text, and it is much better at image segmentation. They also created a new dataset to test puzzle-like image understanding, where their model performs twice as well as previous methods.
Open 2609.07937v1

Pretrained image generators show competence on visual tasks zero shot

Are Image Generators Zero-Shot Perceivers? A Rigorous Evaluation

Abstract: Recent work, such as Vision Banana, shows that lightweight instruction tuning can enable an image generator to achieve state-of-the-art performance across multiple visual perception tasks. Motivated by this perspective, we ask how far image generators can go on public visual perception benchmarks in a zero-shot setting. We introduce ProbeGen, a benchmark for zero-shot generative perception that casts monocular depth estimation, referring/reasoning segmentation, and object counting as conditional generation tasks specified through text prompts, and compares 20 models in total---including proprietary and open-weight image generators, specialist perception models, and MLLMs---across 11 published benchmarks. We observe that pretrained image generators show measurable zero-shot perceptual competence, but with a clear trade-off: specialist models remain stronger for in-distribution accuracy and efficiency, while generative models are often more robust under distribution shift and better at compositional semantic reasoning. We hope this study helps establish zero-shot generative perception as a meaningful research direction and provides a useful foundation for future work at the intersection of visual generation and understanding.

Mon 7 SeptComputer Vision and Pattern Recognition
The gist
The paper studies how well image-generating AI models can understand and interpret images without additional training, called zero-shot learning. The authors created a new benchmark called ProbeGen to test tasks like depth estimation, segmentation, and counting using text prompts. They found that while specialized AI models perform better on known data and run more efficiently, image generators are often more adaptable when faced with new kinds of images and more skilled at complex reasoning. This suggests that image generators have some surprising abilities in image understanding beyond just creating pictures.
Open 2609.07884v1

Multiview semantically consistent encoding improves multi-label prediction with missing data

When Semantically Consistent Encoding Meets View-Label Heterogeneity Modeling: A Unified Framework for Incomplete Multi-View Multi-Label Learning

Abstract: Incomplete multi-view multi-label learning requires not only robust semantic aggregation from partially observed views, but also label-aware exploitation of view-specific evidence. Existing approaches usually emphasize either shared representation learning or decision-level fusion. The former improves robustness against missing views, yet tends to compress label-discriminative view-specific cues into a single latent representation. The latter preserves individual view predictions, but often relies on fixed or globally learned fusion weights, ignoring that different labels of different instances may require different views. To address these limitations, this paper presents V2L, a unified representation-decision framework for incomplete multi-view multi-label classification. On the representation side, V2L constructs semantically consistent variational posteriors from incomplete views through a perturbation-aware encoding mechanism, which provides a stable shared semantic basis. On the decision side, V2L introduces an active view-label relevance modeling strategy that estimates instance-wise and label-wise view contributions, allowing each label prediction to adaptively select useful view-specific evidence. From the perspective of model architecture, these two important strategies are integrated into a unified framework through a hybrid fusion architecture, simultaneously meeting the requirements of cross-view semantic consistency and representational complementarity. Extensive experiments under both incomplete and complete settings show that V2L achieves leading performance on five benchmarks. Code is available at: https://github.com/justsmart/V2L.

Mon 7 SeptComputer Vision and Pattern Recognition
The gist
Some problems involve identifying multiple labels from data collected in different ways, but often some of these data views are missing or incomplete. The authors propose a new method called V2L that first creates a shared understanding from the partial data and then actively figures out which data sources are important for each label. This dual approach helps make more accurate predictions even when some information is missing. Their experiments show this method works better than previous ones on various benchmark tests.
Open 2609.07525v1

Convolutional networks learn shape better by ignoring textures

Mitigating Shortcut Learning: Texture-Penalized Prototype Networks

Abstract: Standard Convolutional Neural Networks (CNNs) exhibit severe performance degradation due to a strong inductive texture bias that prioritizes local, high-frequency patterns over global structural shapes. This dependency causes confident misclassifications during textural changes or environmental effects. To address this flaw, this study introduces the Texture-Penalized Prototype Network (TPPN), a novel architectural framework that shifts this inherent bias without depending on resource-intensive augmented datasets. Specifically, a Texture-Penalization Branch (TPB) imposes a penalty to suppress the extraction of local texture proxies, forcing the network backbone to discard high-frequency cues and extract purified, shape-biased representations. By evaluating similarities within a prototype-based hypersphere derived from the final convolutional features, the approach enforces strict geometric constraints, treating objects as compositions of essential parts to achieve robust classification. Evaluations on texture-shape cue-conflict datasets and synthetic noise benchmarks demonstrate the stronger shape bias of this structural disentanglement. The proposed framework reduces the inherent texture bias of a baseline ResNet-50 from 55.11% to 29.73%, surpassing the texture-suppression capabilities of an off-the-shelf Vision Transformer (ViT-B/16). Furthermore, the approach demonstrates robust generalization under cue-conflict conditions, resisting textural shortcut learning when encountering Out-of-Distribution (OOD) shapes. The model maintains stronger shape accuracy against elevated perturbations. On clean validation data, the architecture incurs a minimal drop in accuracy of 0.90 percentage points. This provides a structural, efficient solution to CNN texture bias.

Mon 7 SeptComputer Vision and Pattern Recognition
The gist
Standard image classification networks often rely too much on textures, which can cause errors when textures change but shapes remain the same. To fix this, the authors designed a new network structure that penalizes the use of texture cues, encouraging the model to focus on the overall shape of objects instead. This approach helps the network recognize objects more accurately even when textures are misleading or altered. Importantly, this method works well without needing large or specially modified training datasets.
Open 2609.07504v1

Visual tracking improves by modeling continuous spatio-temporal context

Continuous Token-Level Spatio-Temporal Context Modeling for Visual Object Tracking

Abstract: Spatio-temporal context has become increasingly crucial for visual tracking. However, most existing approaches extract spatio-temporal cues via discrete sampling strategies, which inherently deviate from the continuity of spatio-temporal context, thereby deteriorating tracking performance. To address this challenge, we propose TLCTrack, a novel tracking framework that models token-level spatio-temporal context through continuously updated salient tokens, enabling more accurate target representation. Specifically, TLCTrack incorporates three components: Masked Unidirectional Attention (MUA), Spatial Salient Token Collection (SSTC), and Temporal Salient Token Bank (TSTB) modules. By explicitly integrating spatio-temporal context, MUA extracts discriminative targetaware spatial features in the search region. To avoid the negative impact of background on feature learning, SSTC progressively suppresses background interference, thereby enhancing target spatial representation. Finally, TSTB captures high-quality spatio-temporal information through continuous salient token updates. Extensive experiments on five benchmarks demonstrate that our method achieves superior performance over state-of-the-art trackers. Code and models are available at https://github.com/xiading123/TLCTrack.

Mon 7 SeptComputer Vision and Pattern Recognition
The gist
Visual tracking means following a moving object in video frames. Most existing methods look at pieces of the video at set time steps, but this misses the smooth changes that happen naturally over time and space. The authors propose a new way to keep track of important tokens representing the object continuously and update them to better capture its movement and appearance. This approach reduces background noise and improves how the object is recognized and followed in video. They tested their method on many benchmark datasets and found it works better than previous systems.
Open 2609.07070v1

Vision language models learn better by linking images and text transformations

Re-calibrated Contrastive Loss for Transformation-Aware Prompt Conditioning in Vision-Language Models

Abstract: Ensuring effective transfer learning for vision-language models without compromising their generalization performance is crucial. However, many existing methods overlook data characteristics and simply reuse the training strategies adopted during pre-training. Specifically, they treat same-class samples as distinct instances and transform images independently of their paired text prompts, which makes model learning more difficult. We address these limitations through transformation-aware prompt conditioning and a re-calibrated contrastive loss. Fixed text descriptors identify the transformations applied to paired images, providing transformation-level consistency without altering class semantics. This design aligns the image and text branches at the transformation level, enabling richer representations while preserving the models' ability to generalize. In addition, our loss function mitigates positive-gradient dilution in soft-target cross-entropy when each anchor has multiple valid positives. During transfer, our approach treats same-class samples as positives rather than distinct instances, enabling the model to learn domain-specific features more effectively. Experiments across distribution shift, transfer learning, and few-shot settings demonstrate consistent improvements over existing approaches. Source code for our method is available at https://github.com/SoongE/ReCalCon.

Mon 7 SeptComputer Vision and Pattern RecognitionArtificial Intelligence
The gist
Vision-language models often struggle when trained on new tasks because they treat different transformed images as unrelated, even if they belong to the same class. The authors designed a way to let these models understand image changes by including matching text descriptions of the transformations, helping the models learn features more effectively. Their new method also adjusts the way similarities between images and texts are measured to avoid confusing signals during training. This improves how well the models work across different tasks such as transfer learning and few-shot learning.
Open 2609.06967v1