Papers
Topics
Authors
Recent
Search
2000 character limit reached

Representative Spectral Correlation Network for Multi-source Remote Sensing Image Classification

Published 30 Apr 2026 in eess.IV and cs.CV | (2604.27323v1)

Abstract: Hyperspectral image (HSI) and SAR/LiDAR data offer complementary spectral and structural information for land-cover classification. However, their effective fusion remains challenging due to two major limitations: The spectral redundancy in high-dimensional HSI and the heterogeneous characteristics between multi-source data. To this end, we propose Representative Spectral Correlation Network (RSCNet), a novel multi-source image classification framework specifically designed to address the above challenges through spectral selection and adaptive interaction. The network incorporates two key components: (1) Key Band Selection Module (KBSM) that adaptively selects task-relevant spectral bands from the original HSI under cross-source guidance, thereby alleviating redundancy and mitigating information loss from conventional PCA-based spectral reduction. Moreover, the learned band subset exhibits highly discriminative spectral structures that align with discriminative semantic cues, promoting compact yet expressive representations. (2) Cross-source Adaptive Fusion Module (CAFM) that performs cross-source attention weighting and local-global contextual refinement to enhance cross-source feature interaction. Experiments on three public benchmark datasets demonstrate that our RSCNet achieves superior performance compared with state-of-the-art methods, while maintaining substantially lower computational complexity. Our codes are publicly available at https://github.com/oucailab/RSCNet.

Summary

  • The paper introduces a Key Band Selection Module (KBSM) that dynamically selects informative spectral bands using sparse attention, effectively reducing redundancy and enhancing discriminability.
  • The Cross-source Adaptive Fusion Module (CAFM) aligns heterogeneous features from HSI, SAR, and LiDAR to achieve robust, task-specific multi-modal fusion.
  • Experimental evaluations on multiple benchmarks demonstrate that RSCNet outperforms state-of-the-art methods in accuracy while maintaining low computational complexity.

Representative Spectral Correlation Network for Multi-source Remote Sensing Image Classification

Introduction and Context

Remote sensing image classification frequently relies on hyperspectral images (HSI) for their rich spectral resolution, but faces persistent challenges related to spectral redundancy and the heterogeneity between distinct data modalities, such as HSI and Synthetic Aperture Radar (SAR) or LiDAR. Prior deep learning approaches, particularly CNN- and Transformer-driven models, have achieved notable advances but generally treat spectral dimension reduction and multi-source fusion as decoupled preprocessing and network stages. This separation typically results in loss of task-relevant, discriminative spectral information, impairing cross-source synergy and subsequent classification accuracy.

The โ€œRepresentative Spectral Correlation Network (RSCNet)โ€ (2604.27323) addresses these integration issues via dynamic, cross-source-aware spectral selection and adaptive multi-modal feature interaction. The primary contributions focus on overcoming two pivotal bottlenecks: effective reduction of spectral redundancy without sacrificing discriminability, and robust alignment and fusion of physically heterogeneous features.

Methodological Innovations

Key Band Selection Module (KBSM)

RSCNet introduces the Key Band Selection Module, a differentiable, task-driven spectral selector that adaptively identifies the k most informative spectral bands from HSI inputs. Unlike static, PCA-based dimensionality reduction, KBSM leverages SAR/LiDAR-derived structural priors during interaction to inform band selection dynamically, thus coupling the selection process with multi-source network optimization. The mechanism centers on a Top-k sparse attention strategy:

  • Sparse attention maps are computed via feature alignments between HSI and fused SAR/LiDAR features.
  • A Dynamic Sparse Gating Module filters bands based on both attention and data-adaptive gating, ensuring only the most salient, band-wise features are preserved.
  • Selected band indices dynamically change depending on the local semantic and geometric context, guided by auxiliary source features.

This approach achieves significant suppression of spectral redundancy while simultaneously maintaining or increasing the mutual information between the reduced spectral embedding and ground-truth labels.

Cross-source Adaptive Fusion Module (CAFM)

The Cross-source Adaptive Fusion Module is designed to address the semantic and spatial discrepancy between modalities:

  • Cross-source attention weighting first projects both HSI and SAR/LiDAR features into a shared latent space, then computes adaptive, normalized attention weights that reweight each sourceโ€™s contribution on a per-instance basis.
  • Local-global contextual refinement further processes the fused representation using dual-branch attention: local attention preserves spatial boundaries and textures, while global attention models long-range dependencies to enforce consistency and denoise the representation.

This framework achieves powerful cross-modal alignment, improving the robustness and discriminability of the fused representation prior to final classification.

End-to-End Network Design

The complete RSCNet architecture processes three parallel flows: (1) raw HSI, (2) PCA-reduced HSI, and (3) SAR/LiDAR data. Original hyperspectral features are compressed by KBSM following interaction with CAFM-driven fused features, and both streams are repeatedly processed through a Representative Spectral Correlation Block (RSCB) stack to iteratively refine cross-source correlation and feature discriminability. Final classification predictions are produced by a shallow MLP atop the aggregated and fused representations.

Experimental Evaluation

Datasets and Baselines

RSCNet is evaluated on three challenging benchmarksโ€”Augsburg (HSI+SAR), Berlin (HSI+SAR), and Houston2013 (HSI+LiDAR)โ€”against ten state-of-the-art baselines spanning various network topologies (e.g., attention CNNs, Vision Transformers, cross-attention fusion architectures).

Performance Highlights

RSCNet achieves the highest or second-highest overall accuracy (OA), average accuracy (AA), and Cohen's kappa across all test cases. Of particular note:

  • Augsburg: OA of 91.5%, AA of 67.89%, kappa 0.8776, exceeding all baselines by at least +0.36% OA, and with particular improvement in Industrial area and Water categories.
  • Berlin: OA of 78.19%, AA of 61.98%, kappa 0.6544, again leading over other methods, particularly in Soil and Water classes.
  • Houston2013: OA of 92.66%, AA of 93.76%, kappa 0.9204, securing superior performance especially in complex land cover types such as Trees, Highway, and Railway.

The superiority is not simply due to greater parameter count or resource use: RSCNet operates with 2.88M parameters and 0.33 GFLOPS on Augsburg, substantially leaner than several high-parameter CNN or hybrid baselines.

Ablation and Analytical Studies

  • Module Contribution: Ablations confirm both KBSM and CAFM are critical; inclusion of KBSM alone yields higher accuracy increases than CAFM alone, but both modules are complementary for optimal performance.
  • Band Selection Efficacy: KBSM outperforms traditional and deep learning-based band selection methods, achieving a +0.76% OA uplift vs. the strongest deep learning competitor (LGCAF) on Berlin.
  • Redundancy and Discriminability Analysis: Average correlation coefficient (ACC) among bands drops post-KBSM, demonstrating redundancy suppression, while mutual information (MI) with labels increases, signifying heightened discriminative power.
  • Fusion Validation: Fused features that combine KBSM-selected bands with cross-source embeddings consistently yield the highest OAs.
  • Computational Efficiency: Gains in classification accuracy are achieved without incurring prohibitive increases in parameter count, inference time, or FLOPs.

Robustness and Practicality

RSCNet's design ensures robust performance across dataset variations in sensor type and acquisition conditions. The integration with PCA enables controlled complexity and mitigates risks from raw noise when handling high-dimensional HSI data. Experiments with varying patch size, number of RSCBs, and key band ratios confirm that performance trends are stable and do not require extensive parameter tuning.

Theoretical and Practical Implications

RSCNet concretely demonstrates the advantage of end-to-end, dynamically coupled spectral selection and cross-modal fusion in remote sensing classification tasks where spectral redundancy and modal heterogeneity are dominant error sources. The Top-k attention-based KBSM introduces a physically interpretable and data-driven spectral selection paradigm, where structural priors from SAR/LiDAR provide guidance anchored in geometric real-world contextโ€”especially beneficial in conditions where illumination or atmospheric artifacts degrade HSI reliability.

The modular construction of RSCNet (encoders, KBSM, CAFM, RSCB) and its reliance on attention operations over direct concatenation/summation lays a scalable foundation for future multi-modal remote sensing frameworks.

Future Directions

The authors highlight several avenues for extension:

  • Enhancing KBSM robustness to atmospheric and sensor noise via improved cross-sensor adaptation or normalization techniques.
  • Scaling the RSCNet architecture to support broader sensor combinations, including multi-spectral and infrared imagery.
  • Investigating semi-supervised or self-supervised variants to reduce dependence on exhaustively labeled datasets and further generalize across deployment scenarios.

Additionally, the emerging importance of interpretable feature selection and physically guided cross-modal fusion presents opportunities for integrating domain adaptation and explainable AI components within RSCNet-like frameworks.

Conclusion

RSCNet presents a methodologically rigorous and empirically validated solution for multi-source remote sensing image classification, unifying dynamic, task-relevant spectral band selection and adaptive cross-source feature alignment. By tightly integrating KBSM and CAFM in an end-to-end network, the approach delivers state-of-the-art performance with controlled complexity, strong generalizability, and practical applicability in scenarios where both spectral redundancy and cross-modal heterogeneity must be treated as first-class challenges. This architecture sets a new standard for adaptive, physically grounded, and highly efficient remote sensing data fusion and classification research.

Paper to Video (Beta)

No one has generated a video about this paper yet.

Whiteboard

No one has generated a whiteboard explanation for this paper yet.

Open Problems

We haven't generated a list of open problems mentioned in this paper yet.

Collections

Sign up for free to add this paper to one or more collections.