Pith. sign in

REVIEW 3 major objections 7 minor 1 cited by

Alignment-Free RGB-T Salient Object Detection: A Large-scale Dataset and Progressive Correlation Network

T0 review · 3 major / 7 minor · reviewed 2026-08-11 · deepseek-v4-flash

Pith's one-line read This paper introduces UVT20K, the largest unaligned RGB-thermal saliency dataset with 20,000 real-world pairs, and PCNet, a network that estimates a homography to align the two views and then progressively models inter- and intra-modal…

desk verdict Good dataset, overstated method claim: UVT20K is a real contribution, but the paper's own Table 2 refutes the 'optimal on all eight datasets' sentence. read the letter →

arxiv 2412.14576 v1 pith:JDUDAEIY submitted 2024-12-19 cs.CV

classification cs.CV
keywords salientobjectdetectionRGB-thermalunalignedimagepairshomographyestimationmultimodalfusiondatasetbenchmarkprogressivecorrelationthermalinfrared
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

The paper sets out to show that salient object detection can work directly on unaligned RGB-thermal image pairs, removing the manual alignment step that existing benchmarks require. It builds UVT20K, a dataset of 20,000 real-world unaligned pairs with masks, scribbles, boundaries, and 15 challenge labels, and it trains PCNet on it. PCNet's claim is that the right order of operations is explicit alignment first (a semantics-guided homography warps the thermal image onto the RGB view), then a two-stage correlation that first matches the overlapping region and then expands the match inside the RGB modality. The reported experiments support the claim by giving the best scores on all eight test sets, and the smallest drop between aligned and weakly aligned versions of the same data.

What carries the argument

The Semantics-guided Homography Estimation (SHE) module: a pre-trained iterative homography estimator (IHN) is adapted to RGB-T inputs by inserting S-Adapters into each encoder layer; the adapters use a down-up bottleneck whose fusion unit multiplies features by the sigmoid of channel-pooled semantic features, so the network learns to align object regions rather than the whole frame. The Inter- and Intra-Modal Correlation (IIMC) module: a transformer attention operation $C(Q,V)=softmax(QK^T/\sqrt{d_k})V+Q$ is applied first between the RGB feature masked by the warped thermal map (and by semantics) and the unwarped thermal feature, and then a second attention pass propagates the inter-modal result across the whole RGB feature. Together they implement the progressive correlation idea that the ablations show is responsible for the gains.

What would settle it

Take the UVT20K test set, split it by the challenge attributes into samples with and without depth-varying salient objects (or into TI/TC versus non-TI/TC), and compare PCNet's F-measure on the two groups. A substantial drop on the depth-varying or partially visible groups would indicate the single-homography alignment, rather than the correlation modules, is the bottleneck. A simpler check is to run PCNet on a small set of pairs where the thermal view shows a large parallax or a different object arrangement.

Watch

Extended reading notes

Core claim

The central claim is that alignment-free RGB-T SOD is best handled by a progressive pipeline: explicitly estimate the geometric transform between the two cameras, warp the thermal image, compute cross-modal correlations only on the thus-aligned overlapping region, and then propagate those correlations across the full object within the RGB modality. The paper further claims that a sufficiently large and diverse unaligned training set is necessary for this to work, and that UVT20K provides it. In support, PCNet achieves the best reported results on all eight evaluated datasets, with an F-measure of 0.822 on UVT20K, 0.686 on UVT2000, and 0.879 on VT821, and it shows the smallest performance gap between VT5000 and un-VT5000 among all compared methods.

Load-bearing premise

The method assumes that a single global geometric mapping, estimated by a network pre-trained on aerial imagery and fine-tuned with a small adapter, can line up the parts of the RGB and thermal images that show the same object, even when the scene has depth changes or the object is only partly visible in the thermal picture.

Editorial extensions

If this is right

  • Training on UVT20K transfers: PCNet's F-measure on UVT2000 rises from 0.646 when trained on weakly aligned un-VT5000 to 0.686 when trained on UVT20K, showing that large-scale unaligned data helps beyond a specific benchmark.
  • The dataset's scribbles and boundary annotations enable weakly supervised and boundary-aware training and evaluation for unaligned RGB-T SOD, which no previous benchmark supports.
  • The gap between aligned and weakly aligned versions of the same data shrinks: PCNet's average drop from VT5000 to un-VT5000 is 3.8%, versus 9.1% for SACNet, implying explicit alignment makes models substantially more tolerant of misalignment.
  • PCNet also tops aligned benchmarks, indicating that learning to align does not hurt, and can even help, when the input is already aligned.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • Because the homography is a single global transform, the approach should saturate on scenes with strong depth discontinuities; a useful extension is to replace the global warp with piecewise or learned dense correspondences for the TI/TC challenge subsets.
  • The four new challenge attributes (SL, CSO, TI, TC) could be used as auxiliary supervision or as a gating signal to decide when the thermal branch should be trusted—something the paper does not explore.
  • The dataset's two capture devices allow a domain-shift experiment: training on Hikvision pairs and testing on FLIR pairs (and vice versa) would measure how much of the reported gain comes from dataset scale rather than device-specific appearance.
  • A testable extension of the progressive correlation idea is to apply the same align-then-correlate order to other unaligned multimodal tasks, such as RGB-depth saliency or visible-infrared tracking, where the parallax assumption is similar.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

3 major / 7 minor

Summary. The paper introduces UVT20K, a dataset of 20,000 unaligned RGB-Thermal image pairs with 407 scenes, 1,256 object categories, and multiple annotation types (saliency masks, scribbles, boundaries, and 15 challenge attributes), split into 10,000 training and 10,000 test pairs. It also proposes PCNet, composed of a Semantics-guided Homography Estimation (SHE) module that warps the thermal image to the RGB frame and an Inter- and Intra-Modal Correlation (IIMC) module that first correlates aligned regions and then propagates correlation within the RGB modality. The method is evaluated on UVT20K, UVT2000, three weakly aligned datasets, and three aligned datasets, with ablation studies and a training-set comparison.

Significance. If the dataset is released with a clean scene-disjoint split, UVT20K is a substantial community resource: it is an order of magnitude larger than existing unaligned RGB-T SOD benchmarks, includes a training/test partition, and provides annotations beyond binary masks. The authors deserve credit for releasing code and dataset, for training all compared alignment-free methods on the same UVT20K training set, and for including a comparison of training sets. PCNet's components are individually ablated and show consistent gains. However, the paper's strongest method claim—state-of-the-art on all eight datasets—is not supported by its own Table 2, and the current random pair-level split may allow scene leakage; both issues must be addressed before the results can be relied on.

major comments (3)
  1. [Comparison with State-of-the-Art Methods / Table 2] The text states that 'our method achieves optimal performance on all eight datasets,' but Table 2 contains two counterexamples. On un-VT1000, OSRNet has Sm=0.980 and Fm=0.951 versus PCNet's Sm=0.922 and Fm=0.904, so PCNet is best only on Em. On VT5000, SACNet has Em=0.957 and Fm=0.901 versus PCNet's Em=0.956 and Fm=0.899. The paper acknowledges only the VT5000 weakness, not the un-VT1000 one, which is large in magnitude. This is a load-bearing claim rather than a wording issue; please correct the summary statement, report per-dataset wins and losses, and temper the conclusion accordingly.
  2. [Dataset Splits] The split is described as randomly selecting 10,000 pairs for training and taking the remaining 10,000 for testing. Since the dataset comprises 407 scenes and, from the collection process, likely multiple frames per scene, a pair-level random split can place frames from the same scene in both training and test sets, yielding near-duplicate test content and optimistic results. Please state whether the split is scene-disjoint; if it is not, provide a scene-disjoint split or show that no scene appears in both partitions. This is essential for the benchmark claim.
  3. [Semantics-guided Homography Estimation (SHE) / Effect of SHE] The paper does not report any direct measure of alignment quality for SHE, so the claim that it aligns common regions rests only on downstream SOD metrics. Because the dataset explicitly includes TI and TC challenges where salient objects are partially or wholly absent from the thermal frame, a global homography cannot align those cases; the paper should report per-challenge performance or alignment error on a subset to show where SHE helps and where it fails, and whether IIMC compensates for alignment failures.
minor comments (7)
  1. [Comparison with State-of-the-Art Methods] The sentence 'Compared to the sub-optimal method (i.e., CA VER), our PCNet achieves an improvement of 6.2%, 2.8%, and 7.8%...' does not specify which two datasets are meant, and the values do not match simple averages over UVT20K and UVT2000; please clarify the calculation.
  2. [Experiment Setup / Table 2] All metrics are reported for a single run; for differences as small as 0.001–0.002 (e.g., VT1000 Em), please provide variance across seeds or significance information.
  3. [Dataset Annotation] The phrase 'rank and select the top 20,000 annotated samples' needs a precise ranking criterion (e.g., annotation agreement score) to reassure readers that the final dataset is not cherry-picked.
  4. [Methodology / Eq. (7)] In Eq. (7), M(I'_t) is described as a mapping and resize operation, but the dimensions of f_i_rgb, M(I'_t), and f_s are not given; state the feature-level shapes and how the mask is applied.
  5. [Table 1] Table 1 lists UVT20K's year as '-'; use the actual release year and clarify what is meant by the 'Training Subset' column entries for the weakly aligned datasets.
  6. [Comparison with State-of-the-Art Methods] The 'smallest performance gap' claim between weakly aligned and aligned datasets is only illustrated for VT5000; report the corresponding gaps for VT821 and VT1000 as well.
  7. [Ablation Studies / ID7] In ablation ID7, 'corresponding visible images' should be clarified as replacing the thermal branch with a second RGB input, since the current wording is ambiguous.

Circularity Check

0 steps flagged · score 1.0 of 10

No significant circularity: the dataset claim and PCNet results are empirical, held-out evaluations with no construction-level reduction to inputs.

full rationale

The paper's central contributions are a new dataset (UVT20K) and a network (PCNet). The dataset claim ('UVT20K is the largest multi-modal SOD dataset') is an empirical comparison of scale, scene count, and category count against existing datasets, not a derivation. The method claim is supported by quantitative comparisons on held-out test sets (UVT20K test, UVT2000, un-VT821, un-VT1000, un-VT5000, VT821, VT1000, VT5000) and by ablations; there is no fitted quantity that is then renamed as a prediction. The SHE module borrows an external homography estimator (IHN, Cao et al. 2022) and adapts it with an S-Adapter; this is a standard transfer-learning setup, not an ansatz smuggled in via self-citation. The paper does cite the authors' prior work (e.g., Wang et al. 2024a for UVT2000 and SACNet), but these citations are used as baselines and comparative benchmarks, not as load-bearing proof of the current method's validity. The ablation against the un-VT5000 training set is a fair control and does not reduce to the UVT20K contribution by construction. The skeptical observation that the text's 'optimal performance on all eight datasets' claim is contradicted by Table 2 (e.g., OSRNet outperforms PCNet on un-VT1000 Sm and Fm) is a correctness and reporting inconsistency, not a circularity: the numbers are external evidence, and the claim could be false without being circular. Overall, the derivation chain is self-contained empirical evaluation, with only minor, non-load-bearing self-citations, so the circularity score is low.

Assumptions & free parameters 0 free parameters · 5 assumptions · 0 invented entities

The paper has no explicit fitted constants; the network parameters are learned from data. The key assumptions are about the validity of the homography model for RGB-T alignment, the quality of the dataset annotations after selection, and the transferability of the pre-trained homography estimator. No new physical entities are introduced.

assumptions (5)
  • domain assumption The pre-trained IHN homography estimator can be adapted to RGB-T image pairs using a lightweight S-Adapter, without losing its alignment capability.
    Invoked in the SHE module description (Section 3.3). The only validation is visual examples in Fig. 5; no quantitative homography accuracy is reported.
  • domain assumption A planar homography warp is sufficient to align the common regions between the RGB and thermal images in the dataset.
    The SHE module outputs a single homography matrix H and warps the thermal image. Scenes with depth variation or large viewpoint differences may not satisfy this model, and the authors list 'inconsistent image depth of field' as future work in the Conclusion.
  • domain assumption The dataset construction process (quality filtering and majority-vote selection) yields accurate saliency annotations.
    Section 3.2 describes annotators selecting salient objects and ranking/selecting the top 20,000 samples. Inter-annotator agreement is not reported, and the selection may introduce bias.
  • standard math Evaluation metrics (E-measure, S-measure, F-measure) are the accepted standards for SOD.
    These metrics are widely used in the SOD literature and cited as standard, so this is a safe background assumption.
  • domain assumption Swin Transformer features are effective for both RGB and thermal modalities.
    The encoders are a standard Swin-B backbone; no justification is given for its choice for thermal inputs, but this is common in the field.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Alignment-Free RGB-T Salient Object Detection: A Large-scale Dataset and Progressive Correlation Network." pith.science (2026). https://pith.science/paper/JDUDAEIY

@misc{pith2026241214576,
  author       = {Pith},
  title        = {Pith review of: Alignment-Free RGB-T Salient Object Detection: A Large-scale Dataset and Progressive Correlation Network},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/JDUDAEIY}},
  note         = {Machine review of arXiv:2412.14576}
}
read the original abstract

Alignment-free RGB-Thermal (RGB-T) salient object detection (SOD) aims to achieve robust performance in complex scenes by directly leveraging the complementary information from unaligned visible-thermal image pairs, without requiring manual alignment. However, the labor-intensive process of collecting and annotating image pairs limits the scale of existing benchmarks, hindering the advancement of alignment-free RGB-T SOD. In this paper, we construct a large-scale and high-diversity unaligned RGB-T SOD dataset named UVT20K, comprising 20,000 image pairs, 407 scenes, and 1256 object categories. All samples are collected from real-world scenarios with various challenges, such as low illumination, image clutter, complex salient objects, and so on. To support the exploration for further research, each sample in UVT20K is annotated with a comprehensive set of ground truths, including saliency masks, scribbles, boundaries, and challenge attributes. In addition, we propose a Progressive Correlation Network (PCNet), which models inter- and intra-modal correlations on the basis of explicit alignment to achieve accurate predictions in unaligned image pairs. Extensive experiments conducted on unaligned and aligned datasets demonstrate the effectiveness of our method.Code and dataset are available at https://github.com/Angknpng/PCNet.

Figures

Figures reproduced from arXiv: 2412.14576 by the authors.

Figure 1
Figure 1. Comparison on scale (i.e., circular area), scenes [PITH_FULL_IMAGE:figures/full_fig_p001_1.png] view at source ↗
Figure 2
Figure 2. Main statistics and characteristics of our UVT20K dataset. [PITH_FULL_IMAGE:figures/full_fig_p003_2.png] view at source ↗
Figure 3
Figure 3. The overall architecture of our proposed Progressive Correlation Network (PCNet). The framework mainly comprises [PITH_FULL_IMAGE:figures/full_fig_p005_3.png] view at source ↗
Figures from the paper (2 more)
Figure 4
Figure 4. Figure 4: The details of the proposed S-Adapter [PITH_FULL_IMAGE:figures/full_fig_p005_4.png]
Figure 5
Figure 5. Figure 5: Examples of before and after warping. where Fbl is the lth layer adapted feature in the IHN feature encoder, and will be propagated to the next layer. The detailed flow of S-Adapter is shown in [PITH_FULL_IMAGE:figures/full_fig_p005_5.png]

Discussion (0). Continue with ORCID to comment.

Forward citations

Cited by 1 Pith paper

Reviewed papers in the Pith corpus that reference this work. Sorted by Pith novelty score. Full citation record

  1. IRGPT: Understanding Real-world Infrared Image with Bi-cross-modal Curriculum on Large-scale Benchmark

    cs.CV 2025-07 conditional novelty 7.0 of 10

    A vision-language model trained on a new 260K-pair real infrared-text dataset beats general VLMs on a 9-task infrared Q&A benchmark, but the benchmark is in-distribution.

Reference graph

Works this paper leans on

35 extracted references · 30 canonical work pages · cited by 1 Pith paper

  1. [1]

    , " * write output.state after.block = add.period write newline

    ENTRY address archivePrefix author booktitle chapter edition editor eid eprint howpublished institution isbn journal key month note number organization pages publisher school series title type volume year label extra.label sort.label short.list INTEGERS output.state before.all mid.sentence after.sentence after.block FUNCTION init.state.consts #0 'before.a...

  2. [2]

    write newline

    " write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 global.max substring 't := if while FUNCTION word.in bbl.in capitalize " " * FUNCT...

  3. [3]

    Cao, S.-Y.; Hu, J.; Sheng, Z.; and Shen, H.-L. 2022. Iterative deep homography estimation. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, 1879--1888

  4. [4]

    Cong, R.; Zhang, K.; Zhang, C.; Zheng, F.; Zhao, Y.; Huang, Q.; and Kwong, S. 2022. Does thermal really always matter for RGB-T salient object detection? IEEE Transactions on Multimedia, 25: 6971--6982

  5. [5]

    Fan, D.; Wang, W.; Cheng, M.; and Shen, J. 2019. Shifting More Attention to Video Salient Object Detection. In IEEE Conference on Computer Vision and Pattern Recognition , 8554--8564

  6. [6]

    Fan, D.-P.; Lin, Z.; Zhang, Z.; Zhu, M.; and Cheng, M.-M. 2020. Rethinking RGB-D salient object detection: Models, data sets, and large-scale benchmarks. IEEE Transactions on neural networks and learning systems, 32(5): 2075--2089

  7. [7]

    Houlsby, N.; Giurgiu, A.; Jastrzebski, S.; Morrone, B.; De Laroussilhe, Q.; Gesmundo, A.; Attariyan, M.; and Gelly, S. 2019. Parameter-efficient transfer learning for NLP. In International Conference on Machine Learning, 2790--2799. PMLR

  8. [8]

    Huo, F.; Zhu, X.; Zhang, L.; Liu, Q.; and Shu, Y. 2021. Efficient context-guided stacked refinement network for RGB-T salient object detection. IEEE Transactions on Circuits and Systems for Video Technology, 32(5): 3111--3124

Show all 35 references
  1. [9]

    Huo, F.; Zhu, X.; Zhang, Q.; Liu, Z.; and Yu, W. 2022. Real-time one-stream semantic-guided refinement network for RGB-thermal salient object detection. IEEE Transactions on Instrumentation and Measurement, 71: 1--12

  2. [10]

    Li, S.; Xu, M.; Ren, Y.; and Wang, Z. 2017. Closed-form optimization on saliency-guided image compression for HEVC-MSP. IEEE Transactions on Multimedia, 20(1): 155--170

  3. [11]

    Liu, N.; Zhang, N.; Shao, L.; and Han, J. 2021 a . Learning selective mutual attention and contrast for RGB-D saliency detection. IEEE Transactions on Pattern Analysis and Machine Intelligence, 44(12): 9026--9042

  4. [12]

    Liu, Z.; Lin, Y.; Cao, Y.; Hu, H.; Wei, Y.; Zhang, Z.; Lin, S.; and Guo, B. 2021 b . Swin transformer: Hierarchical vision transformer using shifted windows. In Proceedings of the IEEE/CVF international conference on computer vision, 10012--10022

  5. [13]

    Liu, Z.; Tan, Y.; He, Q.; and Xiao, Y. 2021 c . SwinNet: Swin transformer drives edge-aware RGB-D and RGB-T salient object detection. IEEE Transactions on Circuits and Systems for Video Technology, 32(7): 4486--4497

  6. [14]

    Lu, A.; Li, C.; Yan, Y.; Tang, J.; and Luo, B. 2021. RGBT tracking via multi-adapter network with hierarchical divergence loss. IEEE Transactions on Image Processing, 30: 5613--5625

  7. [15]

    Ma, S.; Song, K.; Dong, H.; Tian, H.; and Yan, Y. 2023. Modal complementary fusion network for RGB-T salient object detection. Applied Intelligence, 53(8): 9038--9055

  8. [16]

    Pang, Y.; Zhao, X.; Zhang, L.; and Lu, H. 2023. CAVER: Cross-Modal View-Mixed Transformer for Bi-Modal Salient Object Detection. IEEE Trans. Image Process. , 32: 892--904

  9. [17]

    Piao, Y.; Ji, W.; Li, J.; Zhang, M.; and Lu, H. 2019. Depth-induced multi-scale recurrent attention network for saliency detection. In Proceedings of the IEEE/CVF international conference on computer vision, 7254--7263

  10. [18]

    Qin, Z.; Chen, J.; Chen, C.; Chen, X.; and Li, X. 2023. Unifusion: Unified multi-view fusion transformer for spatial-temporal representation in bird's-eye-view. In Proceedings of the IEEE/CVF International Conference on Computer Vision, 8690--8699

  11. [19]

    Tang, B.; Liu, Z.; Tan, Y.; and He, Q. 2022. HRTransNet: HRFormer-driven two-modality salient object detection. IEEE Transactions on Circuits and Systems for Video Technology, 33(2): 728--742

  12. [20]

    Tang, J.; Fan, D.; Wang, X.; Tu, Z.; and Li, C. 2019. RGBT salient object detection: Benchmark and a novel cooperative ranking approach. IEEE Transactions on Circuits and Systems for Video Technology, 30(12): 4421--4433

  13. [21]

    Tu, Z.; Li, Z.; Li, C.; Lang, Y.; and Tang, J. 2021. Multi-interactive dual-decoder for RGB-thermal salient object detection. IEEE Transactions on Image Processing, 30: 5678--5691

  14. [22]

    Tu, Z.; Li, Z.; Li, C.; and Tang, J. 2022. Weakly alignment-free RGBT salient object detection with deep correlation network. IEEE Transactions on Image Processing, 31: 3752--3764

  15. [23]

    Tu, Z.; Ma, Y.; Li, Z.; Li, C.; Xu, J.; and Liu, Y. 2020. RGBT Salient Object Detection: A Large-scale Dataset and Benchmark. CoRR, abs/2007.03262

  16. [24]

    Tu, Z.; Xia, T.; Li, C.; Wang, X.; Ma, Y.; and Tang, J. 2019. RGB-T image saliency detection via collaborative graph learning. IEEE Transactions on Multimedia, 22(1): 160--173

  17. [25]

    Vaswani, A. 2017. Attention is All You Need. arXiv preprint arXiv:1706.03762

  18. [26]

    Wang, G.; Li, C.; Ma, Y.; Zheng, A.; Tang, J.; and Luo, B. 2018. RGB-T saliency detection benchmark: Dataset, baselines, analysis and a novel approach. In Image and Graphics Technologies and Applications: 13th Conference on Image and Graphics Technologies and Applications, IGT...

  19. [27]

    Wang, J.; Song, K.; Bao, Y.; Huang, L.; and Yan, Y. 2021. CGFNet: Cross-guided fusion network for RGB-T salient object detection. IEEE Transactions on Circuits and Systems for Video Technology, 32(5): 2949--2961

  20. [28]

    Wang, K.; Lin, D.; Li, C.; Tu, Z.; and Luo, B. 2024 a . Alignment-Free RGBT Salient Object Detection: Semantics-guided Asymmetric Correlation Network and A Unified Benchmark. IEEE Transactions on Multimedia

  21. [29]

    Wang, K.; Tu, Z.; Li, C.; Zhang, C.; and Luo, B. 2024 b . Learning Adaptive Fusion Bank for Multi-modal Salient Object Detection. IEEE Transactions on Circuits and Systems for Video Technology

  22. [30]

    Wang, W.; Lai, Q.; Fu, H.; Shen, J.; Ling, H.; and Yang, R. 2022. Salient Object Detection in the Deep Learning Era: An In-Depth Survey. IEEE Trans. Pattern Anal. Mach. Intell. , 44(6): 3239--3259

  23. [31]

    Yuan, M.; Shi, X.; Wang, N.; Wang, Y.; and Wei, X. 2024. Improving RGB-infrared object detection with cascade alignment-guided transformer. Information Fusion, 105: 102246

  24. [32]

    Zhang, P.; Liu, W.; Wang, D.; Lei, Y.; Wang, H.; and Lu, H. 2020. Non-rigid object tracking via deep multi-scale spatial-temporal discriminative saliency maps. Pattern Recognit., 100: 107130

  25. [33]

    Zhao, Y.; Huang, X.; and Zhang, Z. 2021. Deep lucas-kanade homography for multimodal image alignment. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, 15950--15959

  26. [34]

    Zhou, W.; Zhu, Y.; Lei, J.; Yang, R.; and Yu, L. 2023. LSNet: Lightweight spatial boosting network for detecting salient objects in RGB-thermal images. IEEE Transactions on Image Processing, 32: 1329--1340

  27. [35]

    Zhu, Y.; Li, C.; Tang, J.; Luo, B.; and Wang, L. 2021. RGBT tracking by trident fusion network. IEEE Transactions on Circuits and Systems for Video Technology, 32(2): 579--592

Pith tools

Reviewed August 11, 2026 · model on record in the stance chip above.