Papers
Topics
Authors
Recent
Search
2000 character limit reached

MixerCA: An Efficient and Accurate Model for High-Performance Hyperspectral Image Classification

Published 28 Apr 2026 in cs.CV | (2604.26138v1)

Abstract: Over the past decade, hyperspectral image (HSI) classification has drawn considerable interest due to HSIs' ability to effectively distinguish terrestrial objects by capturing detailed, continuous spectral information. The strong performance of recent deep learning techniques in tasks like image classification and semantic segmentation has led to their growing use in HSI classification, due to their ability to capture complex spatial and spectral features more effectively than traditional methods. This paper presents MixerCA, a novel lightweight model for HSI classification that leverages depthwise convolution and a self-attention mechanism. MixerCA integrates depth-wise convolutions, token and channel mixing, and coordinate attention into a unified structure to decouple spatial and channel interactions, maintain consistent resolution throughout the network, and directly process HSI patches. Extensive experiments on four hyperspectral benchmark datasets reveal MixerCA's clear advantages over several competing algorithms, including 2D-CNN, 3D-CNN, Tri-CNN, HybridSN, ViT, and Swin Transformer. The source code is publicly available at https://github.com/mqalkhatib/MixerCA.

Summary

  • The paper introduces MixerCAโ€”a multi-scale, depthwise convolution and attention-based architecture that achieves high accuracy for pixel-level hyperspectral image classification.
  • It employs PCA for dimensionality reduction and varied convolution kernels to capture spatial dependencies while preserving spectral details.
  • Empirical results on four benchmark datasets demonstrate MixerCA's superior overall accuracy, spatial coherence, and efficiency compared to traditional models.

MixerCA: An Efficient Model for High-Performance Hyperspectral Image Classification

Model Architecture and Design Principles

MixerCA introduces a structurally compact yet expressive architecture for hyperspectral image (HSI) classification, distinguished by its integration of depthwise convolutions, token/channel mixing, and coordinate attention. The network employs repeated multi-scale depthwise 2D convolutional blocks for spatial feature extraction while maintaining channel-wise processing to address HSI's spectral complexity. The model leverages point-wise convolutions to facilitate channel interactions and employs coordinate attention for spatial localization and enhanced channel discrimination without excessive computational overhead. Notably, the architecture retains spatial resolution throughout the network, allowing direct processing of HSI patches and facilitating precise pixel-level classification. Figure 1

Figure 1: The overall architecture of the developed MixerCA deep learning model.

Methodology and Feature Engineering

Dimensionality reduction is accomplished via PCA, mitigating spectral redundancy inherent in HSI bands and providing a reduced, information-rich representation for subsequent processing. The network begins with an initial 1ร—11 \times 1 convolution to increase channel depth without altering spatial resolution. Mixer modules follow, sequentially applying depthwise convolutions with kernels of 3ร—33\times3, 5ร—55\times5, and 7ร—77\times7 to articulate spatial structure at multiple scales and augment the receptive field. Residual connections aggregate outputs and enhance gradient flow, further refined by point-wise convolutions for channel integration.

Token mixing utilizes MLP operations across spatial patches, capturing long-range spatial dependencies. Channel mixing is realized through point-wise convolution, maintaining spatial dimensions and promoting inter-channel feature learning. The model concludes with a coordinate attention block, global average pooling, and a fully connected layer employing softmax for probabilistic classification. The cross-entropy objective function is adopted for its superior stability and robustness across imbalanced multiclass scenarios.

Empirical Analysis and Parameter Robustness

MixerCA is comprehensively evaluated on four benchmark datasets: Pavia University, Salinas, Gulfport of Mississippi, and Xuzhou. Parameter sensitivity analysis demonstrates that the optimal patch size and PCA count are dataset-dependent, with fine-tuning necessary to maximize classification accuracy. The radar plots below elucidate the effects of varying patch sizes and PCA dimensions, with MixerCA consistently achieving peak accuracy in each dataset-specific configuration. Figure 2

Figure 2: Parameter Radar (Spider) plots of Overall Accuracy across four datasets, highlighting optimal tunings for patch size and PCA count.

Attention Mechanism Comparison

The efficacy of several attention modulesโ€”CBAM, SE, ECA, and CAโ€”is empirically evaluated within the MixerNet backbone. Results unequivocally demonstrate that coordinate attention yields the highest improvements in overall accuracy, average accuracy, and Kappa coefficients, outperforming all other attention variants across distinct datasets. This underscores the value of spatially-aware, channel-refined attention for HSI classification.

Comparative Performance and Computational Analysis

MixerCA exhibits marked superiority over traditional machine learning classifiers (SVM, MLP), CNN-based architectures (2D-CNN, 3D-CNN, Tri-CNN, PMI-CNN, HybridSN), and transformer-based models (ViT, Swin Transformer). Strong results are consistently observed across datasets, with MixerCA often outperforming the next best model by 1โ€“2% OA and substantially higher average class accuracy, particularly in under-represented or rare classes. MixerCA achieves an OA of 97.81% (PU), 97.87% (SA), 95.28% (GP), and 99.20% (XZ), with minimal misclassification and improved spatial coherence.

Visual inspection of classification maps for each dataset corroborates these quantitative findings, highlighting MixerCA's ability to preserve structural details and minimize misclassifications, especially in challenging or spatially ambiguous classes. Figure 3

Figure 3: Classification results for the Pavia University dataset, showcasing MixerCAโ€™s improved spatial consistency and reduced misclassification.

Figure 4

Figure 4: Classification results for Salinas, with MixerCA preserving class boundaries and spatial coherence.

Figure 5

Figure 5: Classification results for Gulfport of Mississippi, demonstrating MixerCAโ€™s generalization in rare classes.

Figure 6

Figure 6: Classification results for Xuzhou, with MixerCA achieving high spatial coherence and accuracy.

MixerCA provides a compelling trade-off between computational efficiency and predictive performanceโ€”maintaining a low parameter count (59,889), reduced FLOPs (19M), and MACs (9.3M)โ€”while outperforming parameter-heavy models including Tri-CNN and HybridSN.

Scalability, Generalization, and Robustness

MixerCA retains its performance advantage across several additional HSI datasets from diverse sensors, demonstrating scalable generalization with minimal training data. The modelโ€™s accuracy remains robust as the percentage of training samples increases, outperforming all comparisons even at the lowest supervision ratios. The classification accuracy with respect to training sample percentages is consistent, revealing a monotonic improvement with more data, yet MixerCA maintains superiority even under extreme data scarcity. Figure 7

Figure 7: Overall Accuracy as a function of training percentage, illustrating MixerCAโ€™s superior generalization with minimal annotated data.

Implications, Limitations, and Speculative Directions

Practically, MixerCAโ€™s performance and efficiency position it as a viable solution for real-time, large-scale remote sensing delivery, including land cover mapping, precision agriculture, and environmental monitoring. The model's ability to generalize from minimal supervision is valuable for operational scenarios with limited labeled data. Theoretically, the integration of multi-scale depthwise convolution, token/channel mixing, and spatially-aware attention advances the state-of-the-art in spectral-spatial modeling for high-dimensional input domains.

Limitations are observed with respect to label dependencyโ€”performance is tied to dataset quality and annotation abundance. Future research should leverage self-supervised, semi-supervised, and domain-generalization paradigms to further reduce annotation reliance. Additionally, exploration of pruning, knowledge distillation, and multimodal fusion (LiDAR, SAR, RGB) promises greater discriminative power and computational efficiency. Advancing interpretability, uncertainty quantification, and hierarchical scene modeling are recommended for practical integration and trustworthy deployment in mission-critical applications.

Conclusion

MixerCA establishes a new benchmark for efficient and accurate HSI classification by adapting convolutional, mixer, and attention paradigms to the spectral-spatial domain. The modelโ€™s architecture provides a computationally tractable yet expressive feature extractor, validated across multiple datasets and scenarios. Its strong numerical results, generalization under low supervision, and effective attention mechanism highlight practical and theoretical advances. Future work should address scalability, label scarcity, multimodal integration, and interpretability, deepening the model's utility for real-world remote sensing and AI-driven environmental analytics.

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.

Tweets

Sign up for free to view the 1 tweet with 0 likes about this paper.