Source-linked AI summary
A Unified RGB-T Saliency Detection Benchmark: Dataset, Baselines, Analysis and A Novel Approach
Chenglong Li, Guizhao Wang, Yunpeng Ma, Aihua Zheng, Bin Luo, Jin Tang
TL;DR
RGB-T saliency detection lacks a comprehensive benchmark despite the challenge of complex scenes and the potential value of complementary RGB and thermal cues. The paper builds a diverse benchmark with challenge annotations and baselines, then proposes reliability-weighted multi-task manifold ranking with cross-modality consistency; experiments demonstrate its effectiveness and provide insights into thermal information.
Problem
RGB-T saliency detection is limited by the lack of a comprehensive benchmark for evaluating methods in complex scenes and conditions.
Method
The paper combines a diverse RGB-T benchmark with a multi-task manifold-ranking method using modality reliability weights and cross-modality consistency for adaptive collaborative fusion.
Results
Experiments on the benchmark demonstrate the effectiveness of the proposed approach, while analyses show thermal information can complement RGB data and improve saliency detection.
Takeaways & Limitations
The benchmark supports challenge-sensitive evaluation and provides basic insights and potential future research directions for RGB-T saliency detection.
Abstract
from arXiv · showhide
Despite significant progress, image saliency detection still remains a challenging task in complex scenes and environments. Integrating multiple different but complementary cues, like RGB and Thermal (RGB-T), may be an effective way for boosting saliency detection performance. The current research in this direction, however, is limited by the lack of a comprehensive benchmark. This work contributes such a RGB-T image dataset, which includes 821 spatially aligned RGB-T image pairs and their ground truth annotations for saliency detection purpose. The image pairs are with high diversity recorded under different scenes and environmental conditions, and we annotate 11 challenges on these image pairs for performing the challenge-sensitive analysis for different saliency detection algorithms. We also implement 3 kinds of baseline methods with different modality inputs to provide a comprehensive comparison platform. With this benchmark, we propose a novel approach, multi-task manifold ranking with cross-modality consistency, for RGB-T saliency detection. In particular, we introduce a weight for each modality to describe the reliability, and integrate them into the graph-based manifold ranking algorithm to achieve adaptive fusion of different source data. Moreover, we incorporate the cross-modality consistent constraints to integrate different modalities collaboratively. For the optimization, we design an efficient algorithm to iteratively solve several subproblems with closed-form solutions. Extensive experiments against other baseline methods on the newly created benchmark demonstrate the effectiveness of the proposed approach, and we also provide basic insights and potential future research directions for RGB-T saliency detection.
I. INTRODUCTION
The paper addresses limited RGB-T saliency research by introducing a comprehensive benchmark and a multi-task manifold-ranking approach that adaptively and collaboratively fuses RGB and thermal information.
- RGB-T saliency detection remains challenging in complex scenes, while existing research is limited by the lack of a comprehensive image benchmark.
- The benchmark contains 821 aligned RGB-T image pairs with ground truths, 11 fine-grained challenges, and three baseline categories using RGB, thermal, or RGB-T inputs.
- The proposed method uses graph-based manifold ranking with modality reliability weights for adaptive fusion and cross-modality consistency constraints for collaborative integration.
- The optimization iteratively solves several subproblems with closed-form solutions.
- Experiments compare methods across three modality-input settings, demonstrating the proposed approach’s effectiveness and revealing the potential of thermal information.
A. Dataset
The dataset is designed for diverse, challenge-sensitive RGB-T saliency evaluation, using aligned image pairs collected across scenes and environmental conditions and annotated with object and challenge attributes.
- Dataset construction: The dataset contains 821 RGB-T image pairs collected with a thermal imager and CCD camera, then aligned using point correspondences and homography estimation.
- Dataset construction: Image pairs span approximately 60 scenes and varied environmental conditions, with salient-object category, size, number, and spatial information considered for diversity.
- Dataset factors: The dataset includes sunny, snowy, and nighttime conditions to capture illumination-related difficulty in RGB images.
- Dataset factors: Similar object-background appearance or temperature and cluttered backgrounds are included because they make salient-object separation ambiguous or difficult.
- Dataset factors: Object-location variation includes off-center salient objects and objects crossing image boundaries, weakening common center and boundary spatial priors.
- Challenge annotations: Eleven annotated challenges include object scale and multiplicity, illumination, weather, spatial location, appearance, thermal crossover, clutter, and focus.
- Baseline platform: The benchmark implements RGB or thermal single-modality baselines and RGB-T baselines formed by concatenating features from both modalities.
C. Evaluation Metrics
The section defines PR curves, F0.3, and MAE for evaluating saliency maps, then outlines graph construction and manifold ranking used in the RGB-T approach. It also notes that richer RGB and thermal cues could improve the graph in future work.
- Evaluation measures: PR curves, F0.3, and MAE evaluate saliency algorithms using precision-recall behavior, adaptive-threshold scores, and map dissimilarity from ground truth.Precision and recall are computed from thresholded saliency maps; MAE supports visual comparison with the ground truth.
- Manifold ranking: Graph-based manifold ranking treats query labels as initial superpixel saliency values and ranks remaining nodes according to their affinities to the queries.The resulting ranking scores and optimized modality weights are used for RGB-T saliency detection.
- Graph construction: SLIC generates non-overlapping superpixels that serve as graph nodes, with edges connecting neighboring, boundary-sharing, or image-boundary superpixels.The first two conditions capture local smoothness, while boundary connections reduce geodesic distances between similar superpixels.
- Limitations and future work: The current graph uses limited cues, while the authors identify adaptive graph construction from richer RGB and thermal relationships as future work.This scope boundary reflects the paper’s emphasis on the multi-task manifold ranking algorithm.
B. Multi-Task Manifold Ranking with Cross-Modality Consistency
The method extends graph-based manifold ranking to RGB-T saliency detection by weighting modalities according to reliability and enforcing cross-modality consistency. These additions address the equal-contribution assumption of conventional multi-modal ranking and are illustrated in Fig. 4.
- Manifold ranking: Graph-based manifold ranking assigns each superpixel a score according to its affinity to labeled query nodes.The query labels provide initial saliency values, while the remaining superpixels are ranked through the graph structure.
- Motivation: Conventional multi-modal ranking treats modalities as independent and equally contributive, which can limit robustness to source perturbation or malfunction.The proposed formulation targets this limitation by modeling modality reliability and cross-modal relationships.
- Proposed model: The proposed model adaptively integrates modalities using reliability weights and jointly computes their ranking functions with cross-modality consistency constraints.The modality weight vector represents source reliability, while the consistency term encourages collaborative ranking across modalities.
- Effectiveness illustration: Fig. 4 compares inputs, results without modality weights, results without cross-modality consistency, and the proposed results against ground truth.The figure organizes RGB and thermal inputs first, ablations in separate rows, and final predictions with corresponding ground truth.
C. Optimization Algorithm
The optimization alternates between updating ranking functions and modality weights to solve the proposed objective efficiently. The authors report fast empirical convergence but do not prove global convergence.
- Inputs and initialization: The optimization uses an initialized modality-weight vector, graph-derived matrices, query labels, and balance parameters as inputs.The implementation initializes r_k and uses ε = 10^-4 with maxIter = 50.
- Stopping criterion: The loop terminates when the objective change falls below ε, or after the configured maximum iteration count.The stopping rule checks |J_t − J_{t−1}| < ε, with maxIter = 50 specified in the implementation.
- Ranking update: The ranking-function update is obtained by rewriting the fixed-weight subproblem in block-diagonal matrix form and differentiating with respect to S.Y stacks the modality query vectors, A is block-diagonal, and R repeats each modality weight across its superpixels.
- Weight update: The modality weights are updated from the fixed-ranking subproblem by differentiating the objective with respect to each r_k.The update is described after reformulating the objective with S held fixed.
- Alternating optimization: The algorithm alternates updates of the ranking functions and modality weights to obtain a sub-optimal solution of the objective.The procedure repeatedly updates S and each modality weight r_k until the stopping condition is met.
- Optimization scope: The authors empirically validate fast convergence, while stating that global convergence of the alternating algorithm is not proved.The optimized ranking functions and modality weights are then used for RGB-T saliency detection.
IV. TWO-STAGE RGB-T SALIENCY DETECTION
The RGB-T saliency detector uses a two-stage ranking scheme with boundary priors and foreground queries for unsupervised bottom-up detection.
- Two-stage detection: The proposed approach performs unsupervised bottom-up RGB-T saliency detection in two ranking stages.Boundary priors and foreground queries are incorporated into the two-stage scheme.
A. Saliency Measure
The saliency measure represents each graph node by a ranking score obtained from the proposed algorithm, using boundary-derived queries to initialize detection.
- Ranking-based saliency: Each graph node receives a saliency value equal to its ranking score computed by the proposed algorithm.The input RGB-T image is represented as a graph with salient query nodes.
- Query construction: Boundary priors identify highly confident foreground superpixels as queries before the final ranking is computed.The selected superpixels have low ranking scores in all modalities and belong to foreground objects.
- Modality fusion: The final saliency map combines the ranking results with the learned modality weights.This fusion produces the output after the proposed algorithm is applied to the RGB-T graph.
B. Ranking with Boundary Priors
The method uses boundary nodes as background seeds, ranks superpixels for each modality, and combines modality-specific rankings through adaptive weights to produce the final saliency map.
- Boundary-seed ranking: Boundary nodes serve as background seeds for ranking the relevance of other superpixel nodes.The first-stage ranking uses the boundary prior as labelled data.
- Boundary-seed ranking: Ranking values from the top, bottom, left, and right boundaries are normalized and integrated into an initial modality-specific saliency map.Each image boundary provides a separate ranking whose values are combined in the first stage.
- Foreground-query selection: Foreground queries are selected when a superpixel’s first-stage score exceeds the adaptive threshold max(score)−0.25.The threshold is defined relative to the maximum first-stage score for each modality.
- Adaptive fusion: A second ranking stage computes refined scores and modality weights, then combines them to obtain the final saliency map.The modality weights support adaptive fusion of the modality-specific ranking results.
V. EXPERIMENTS
Experiments evaluate the approach on the RGB-T benchmark against baselines using fixed experimental settings and multiple metrics. The proposed method outperforms the baselines overall and remains stronger on most challenge subsets, while some cases favor alternatives.
- Experimental setup: The benchmark experiments compare the proposed approach with baseline methods using RGB, thermal, and RGB-T inputs.The evaluation is conducted on the newly created benchmark with three input modalities.
- Experimental setup: All parameters are fixed for the proposed method, while baseline methods use their publicly released default settings.This establishes the stated comparison protocol.
- Evaluation metrics: The benchmark reports precision, recall, F-measure, and MAE, with runtime also included in the comparison tables.Tables III and IV summarize the principal performance measures and runtime information.
- Overall performance: The proposed approach substantially outperforms all baseline methods on the entire dataset, while RGB-T baselines outperform both RGB-only and thermal-only methods.The results are reported as evidence for adaptive thermal incorporation and complementary RGB-T information.
- Challenge-sensitive performance: On most challenge subsets, the proposed approach outperforms other RGB-T methods, except for big salient objects and bad weather.The challenge analysis covers factors including illumination, appearance, clutter, and thermal crossover.
- Challenge-sensitive performance: For low illumination, similar appearance, and thermal crossover, the method uses the other modality to detect salient objects robustly under occasional modality perturbation or malfunction.These cases illustrate the reported complementary role of multiple source modalities.
C. Analysis of Our Approach
The analysis examines component contributions, efficiency, and failure cases. Adaptive modality weighting and cross-modality consistency improve performance, while the implementation converges efficiently but remains vulnerable to clutter and boundary-crossing objects.
- Components: The ablation study removes modality weights in Ours-I and cross-modality consistency constraints in Ours-II.These variants isolate the two principal design components.
- Components: The complete method substantially outperforms Ours-I, demonstrating the contribution of weighted variables for adaptive source-data fusion.The comparison uses PR curves, representative precision, recall, F-measure, and MAE.
- Components: The complete algorithm outperforms Ours-II, validating the effectiveness of the cross-modality consistent constraints.Ours-II removes those constraints by setting λ = 0.
- Efficiency: The method costs about 1.39 seconds per image pair and converges in approximately five optimization iterations.This runtime is reported despite five optimization passes over the ranking model.
- Efficiency: Over-segmentation takes about 0.52 seconds and feature extraction approximately 0.24 seconds, while the two ranking stages take about 0.42 and 0.14 seconds.Over-segmentation and feature extraction together account for about 55% of computation time.
- Limitations: The method can fail when clutter causes incorrect reliability weights or when salient objects cross image boundaries.The first-stage boundary prior may produce insufficient foreground queries for the second stage.
D. Discussions on RGB-T Saliency Detection
The discussion finds that RGB-T fusion improves saliency detection, especially under several challenging conditions, but direct fusion can be harmed by noisy modalities. The benchmark also motivates broader models, priors, and graph relations.
- RGB-T benefits: Integrating RGB and thermal data boosts saliency detection performance, with larger improvements under low illumination, similar appearance, image clutter, and thermal crossover.These findings are presented as evidence for thermal information’s importance and RGB-T complementarity.
- Fusion risks: Direct RGB-T integration can underperform single-modality input when one modality is noisy or malfunctioning.Adaptive fusion is proposed to determine modality contributions and reduce redundant information.
- Future directions: Potential research directions include model ensembles, global considerations, boundary priors, multiscale context, and richer pixel or superpixel relations.The conclusion also calls for expanding the benchmark and improving robustness through other priors and graph construction.