This section describes the benchmark datasets, preprocessing, training setup, and evaluation metrics. We then present ablation studies and comparisons with state-of-the-art methods on three PolSAR datasets, demonstrating the architectural advantages and physical interpretability of our approach.
4.1. Datasets and Preprocessing
Three fully polarimetric SAR datasets are used in the experiments, including two L-band scenes acquired by the airborne AIRSAR sensor and one C-band scene acquired by the spaceborne RADARSAT-2 sensor. The statistical summary of the dataset partitioning is presented in
Table 1, and the specific preprocessing and data augmentation workflows are detailed as follows:
1) AIRSAR San Francisco Dataset. This dataset was acquired by the NASA/JPL AIRSAR instrument over San Francisco in 1989. It contains five terrain categories: high-density urban, water, vegetation, developed urban, and low-density urban. Unlabeled pixels are treated as background and are excluded from accuracy evaluation. The Pauli RGB image and the corresponding ground-truth labels are shown in
Figure S1 in the supplemental material.
2) AIRSAR Flevoland Dataset. This L-band dataset was acquired over an agricultural area in Flevoland, the Netherlands, in 1989. It contains 15 land-cover categories: stem beans, peas, forest, lucerne, wheat1, beet, potatoes, bare soil, grass, rapeseed, barley, wheat2, wheat3, water, and buildings. Unlabeled pixels are treated as background and are excluded from accuracy evaluation. The Pauli RGB image and the corresponding ground-truth labels are shown in
Figure S2 in the supplemental material.
3) RADARSAT-2 San Francisco Dataset. This C-band spaceborne dataset was collected by RADARSAT-2 over San Francisco in 2008. It contains five land-cover categories: developed urban, low-density urban, high-density urban, sea, and vegetation. Unlabeled pixels are treated as background and are excluded from accuracy evaluation. The Pauli RGB image and the corresponding ground-truth labels are shown in
Figure S3 in the supplemental material.
Under the monostatic reciprocity assumption, the polarimetric information of each pixel is represented by the
complex-valued coherency matrix
defined in
Section 3.4. Since
is Hermitian, its six unique upper-triangular elements are utilized as the input tensor for the proposed complex-valued network. To ensure a strictly fair comparison with real-valued baselines, these networks are provided with the same polarimetric information, structured as a nine-dimensional real-valued vector consisting of the three diagonal power terms and the real and imaginary components of the three off-diagonal complex elements. This data structuring ensures that both complex-valued and real-valued architectures operate on identical physical information content, thereby attributing any performance gains exclusively to the proposed network’s structural advantages. Given the limited availability of labeled pixels, each PolSAR image is first mirror-padded along its edges to minimize boundary artifacts and subsequently cropped into non-overlapping
patches. The samples are randomly partitioned into training and test sets with a ratio of 7:3. To mitigate overfitting and improve generalization, on-the-fly spatial data augmentation—including random rotation (
) and multi-scale stretching (scale factor
)—is applied exclusively to the training samples, while the test set remains unaugmented to maintain the fidelity of the evaluation metrics.
4.3. Ablation Experiments
Ablation experiments are conducted to evaluate the contribution of each component, including the baseline U-Net, the multi-resolution HRNet stream, the complex-valued formulation, and the CV-CGAE module. The quantitative results, parameter comparisons, and internal module ablations on the AIRSAR San Francisco dataset are summarized in
Table 2,
Table 3, and
Table 4, respectively.
1) Core Module Ablation. As shown in
Table 2, the real-valued U-Net baseline obtains an mIoU of 89.34% on the AIRSAR San Francisco scene. Incorporating the multi-resolution HRNet stream improves the mIoU to 92.84%, indicating that parallel high-resolution representations are beneficial for preserving spatial details and capturing multi-scale scattering patterns. In contrast, the standard four-stage HRNet achieves an mIoU of 71.77%, suggesting that a highly parameterized HRNet is less suitable for the limited-sample PolSAR setting considered in this study. This result supports the use of a lightweight HRNet design. Extending the lightweight architecture to the complex-valued domain further increases the mIoU to 93.59%, demonstrating the benefit of retaining polarimetric phase information. With the CV-CGAE module, the proposed model achieves the best performance, with 97.21% mIoU, 98.64% OA, and 98.57% MPA. Similar trends are observed on the Flevoland and RADARSAT-2 datasets, as reported in
Table S1 and
Table S2 in the supplemental material, indicating the general effectiveness of the proposed components across different PolSAR scenes.
2) Parameter-Fair Comparison Experiment. To examine whether the performance improvement is mainly caused by increased model capacity, a real-valued HRU-Net with doubled channel width is evaluated. As shown in
Table 3, this expanded real-valued baseline contains approximately 5.86M parameters but achieves an mIoU of 91.35%, which is lower than that of the complex-valued HRU-Net with approximately 4.06M parameters. This comparison suggests that the improvement of the proposed model is not solely attributable to parameter scaling. Instead, the explicit use of complex-valued polarimetric information contributes to the enhanced segmentation accuracy.
3) Internal Ablation of CV-CGAE Module.
Table 4 evaluates the internal components of the CV-CGAE module. Using cross-attention alone yields an mIoU of 93.59%. Adding the complex-valued CBAM enhancement stage improves the mIoU to 96.02%, indicating that channel and spatial recalibration can suppress redundant responses and enhance discriminative feature components. Introducing the gating mechanism further improves the mIoU to 96.76%. The complete CV-CGAE module achieves the highest mIoU of 97.21%, showing that feature enhancement, cross-attention interaction, and gated recalibration contribute complementarily to segmentation performance.
4) Qualitative Analysis of CV-CGAE via Feature Maps. The intermediate feature maps from the second decoder stage are visualized on the AIRSAR Flevoland dataset to further examine the effect of CV-CGAE, as shown in
Figure 3. Without CV-CGAE, the feature maps present more diffuse activations and less distinct boundary responses, with visible interference from speckle-related fluctuations. After introducing CV-CGAE, the activations become more localized around terrain boundaries and land-cover contours, suggesting that the module helps enhance boundary- and texture-related responses while suppressing irrelevant feature components.
5) Visual Analysis of Ablation Configurations. To visually corroborate the quantitative ablation results in
Table 2,
Table S1, and
Table S2,
Figure S4-S6 present the segmentation maps of all six ablation variants on the three datasets. For each figure, subfigures (a)-(f) correspond to: (a) baseline U-Net, (b) standalone HRNet encoder, (c) real-valued HRU-Net (RV-HRU-Net), (d) RV-HRU-Net with real-valued CGAE, (e) complex-valued HRU-Net without CV-CGAE, and (f) the full proposed model with CV-CGAE.
On the AIRSAR San Francisco dataset (
Figure S4), the baseline (a) produces scattered misclassifications, especially between developed and high-density urban areas. Standalone HRNet (b) introduces noisy patches and irregular boundaries, consistent with its low mIoU of 71.77% (
Table 2). RV-HRU-Net (c) yields smoother regions but still confuses urban subclasses. Adding CGAE (d) refines some edges, yet misclassifications persist in low-density urban zones. CV-HRU-Net without CV-CGAE (e) improves class consistency in intensity-similar categories, and the full model (f) achieves the cleanest boundaries and fewest isolated errors, visually matching the highest mIoU of 97.21%.
Similar trends are observed on the 15-class Flevoland dataset (
Figure S5) and the RADARSAT-2 San Francisco dataset (
Figure S6). In Flevoland, the baseline and HRNet alone show fragmented crop parcels, while the full model produces coherent field boundaries and corrects the misclassification of small-sample classes such as buildings. On RADARSAT-2, the full model maintains continuous sea-land interfaces and preserves fine urban structures. These visual comparisons, together with the quantitative metrics in
Tables S1 and S2, confirm the progressive contribution of each proposed component and the generalization of the CV-CGAE module across different sensors and frequency bands.
4.4. Semantic Segmentation Comparative Experiments
This subsection presents qualitative and quantitative comparisons between the proposed method and nine representative segmentation networks, including seven real-valued methods and two complex-valued methods, on three benchmark PolSAR datasets. For each dataset, the results are analyzed from both architectural and polarimetric perspectives to better explain the observed performance differences.
1) Results on AIRSAR San Francisco Dataset.
Figure 4 shows the semantic segmentation maps generated by different methods on the AIRSAR San Francisco dataset. Three regions of interest (ROIs), marked by White Box 1, Box 2 and Box 3, are selected for detailed qualitative analysis.
White Box 1 evaluates overall segmentation performance across heterogeneous land-cover regions. Several real-valued networks misclassify parts of the sea surface as vegetation, which may be caused by similarities in backscattering intensity. In addition, most real-valued architectures show confusion between developed urban and high-density urban areas. The complex-valued methods, including L-CV-DeepLabv3+ and CV-Capsule U-Net, reduce part of this cross-class confusion, but their predicted boundaries remain relatively coarse in some local regions. In comparison, the proposed method produces more continuous sea-land interfaces and fewer isolated misclassified pixels.
White Box 2 examines the discrimination of terrain categories with similar backscattering intensities. FCN and SegFormer misclassify parts of the developed urban region as high-density urban, while DeepLabv3+ assigns some pixels to high-density urban and vegetation. From a polarimetric perspective, developed urban and high-density urban areas in L-band SAR observations may exhibit similar co-polarized backscattering power, making them difficult to separate using intensity-dominated representations alone. The proposed method achieves a developed urban IoU of 94.87%, outperforming the best real-valued network, TransUNet, by 0.87 percentage points and the second-best complex-valued network, CV-Capsule U-Net, by 0.13 percentage points. This improvement is consistent with the use of complex-valued convolutions, which preserve amplitude-phase interactions related to polarimetric scattering mechanisms. Developed urban areas with lower building density often contain mixed scattering components and relatively diffuse phase distributions, whereas high-density urban blocks are more likely to exhibit stronger double-bounce scattering and more coherent phase responses. By modeling these phase-related differences, the proposed method improves the separability of urban subclasses with similar intensity responses.
The built-up areas in this dataset are also affected by terrain azimuth modulation, where building orientation relative to the radar line of sight may introduce spatially varying polarimetric responses. Under such nonuniform scattering conditions, the proposed method obtains IoUs of 94.87% and 95.66% for developed urban and high-density urban categories, respectively. These results suggest that multi-scale fusion of complex-valued features improves robustness to orientation-induced scattering variability.
White Box 3 focuses on a dense low-density urban region. Several real-valued networks misclassify parts of this region as vegetation, whereas the proposed method better preserves the spatial continuity of urban structures. Quantitatively, the proposed method achieves a low-density urban IoU of 98.35%, which is higher than those of TransUNet and CV-Capsule U-Net, with IoUs of 94.55% and 94.81%, respectively.
The quantitative results in
Table 5 are consistent with the visual comparisons. The proposed method achieves the best overall performance on this dataset, with an mIoU of 97.21%, an OA of 98.64%, and an MPA of 98.57%. By contrast, highly parameterized models such as CGRSeg and DeepLabv3+ obtain lower mIoU values of 69.77% and 71.84%, respectively, suggesting that large model capacity alone does not guarantee reliable performance under limited-sample PolSAR training conditions. The proposed lightweight complex-valued design achieves stronger accuracy with approximately 4.0M parameters, indicating a favorable balance between representational capacity and data scale.
2) Results on AIRSAR Flevoland Dataset.
Figure 5 presents the semantic segmentation maps on the 15-class AIRSAR Flevoland dataset. This dataset is challenging because many crop categories exhibit similar polarimetric scattering responses. Three ROIs, marked by Black Box 1, Box 2 and Box 3, are selected for qualitative analysis.
Black Box 1 highlights a transition region between rapeseed and bare soil. Several real-valued networks misclassify rapeseed as beet or wheat, indicating the difficulty of separating crop types with similar intensity and textural characteristics. The proposed method provides clearer class separation and achieves a rapeseed IoU of 94.65%. This result may be attributed to the preservation of phase-related polarimetric information, including information associated with cross-polarized responses and canopy structural differences, which can be underutilized in purely real-valued representations.
Black Box 2 focuses on a wheat3 parcel to evaluate boundary preservation and class consistency. Baseline methods tend to misclassify boundary pixels as lucerne, wheat, or rapeseed, reflecting the difficulty of resolving fine-grained crop transitions under speckle and local scattering variability. The proposed method obtains a wheat3 IoU of 99.29% and produces more continuous parcel boundaries. This improvement is consistent with the proposed architectural design: the parallel high-resolution streams preserve spatial detail during encoding, while the CV-CGAE module selectively transfers boundary- and texture-related cues to support decoder reconstruction.
Black Box 3 evaluates the building category, which is a small-sample class with a limited pixel proportion. Several real-valued methods perform poorly on this category; for example, SegFormer, CGRSeg, and TransUNet achieve building IoUs of 15.65%, 25.60%, and 35.95%, respectively. In comparison, the proposed method increases the building IoU to 97.01%, outperforming the best real-valued baseline, DSNet, by 19.85 percentage points. This result suggests that the lightweight three-stage topology helps reduce overfitting risk for scarce categories, while the complex-valued formulation provides additional phase-related information for class discrimination.
The quantitative results in
Table 6 further support these observations. The proposed method achieves an mIoU of 98.25%, and all 15 terrain categories obtain IoU values above 94%. In contrast, CGRSeg obtains an mIoU of 38.91%, with several classes showing very low IoU values. This result indicates that a highly parameterized Transformer-based backbone may be difficult to train effectively with the limited number of labeled samples in this dataset. Overall, the Flevoland results suggest that combining lightweight architecture design with complex-valued polarimetric representation is effective for small-sample PolSAR semantic segmentation.
3) Results on RADARSAT-2 San Francisco Dataset.
Figure 6 presents the segmentation results on the RADARSAT-2 San Francisco dataset. Since this C-band spaceborne dataset covers a similar geographic region to the AIRSAR San Francisco dataset, it provides a useful cross-frequency and cross-platform evaluation.
White Box 1 and Box 2 cover vegetation and sea regions with relatively long and clear boundaries, making them suitable for assessing boundary localization. FCN misclassifies large sea areas as vegetation, low-density urban, and developed urban. DeepLabv3+, SegFormer, TransUNet, DSNet, CGRSeg, and VWFormer also show varying degrees of confusion near vegetation and urban boundaries. The two competing complex-valued networks reduce some of these errors, although L-CV-DeepLabv3+ still produces relatively coarse local boundaries. In comparison, the proposed method maintains more continuous terrain boundaries and fewer local misclassifications. Similar to the Flevoland dataset, this advantage is consistent with the combination of HRNet-based high-resolution feature preservation and CV-CGAE-based texture-guided feature refinement.
White Box 3 focuses on a developed urban region. Several real-valued networks misclassify parts of this area as vegetation or low-density urban, and the two complex-valued baselines also show localized errors. The proposed method correctly identifies most of the region and achieves a developed urban IoU of 97.89%, which is the highest among the compared methods. Together with the developed urban IoU of 94.87% on the L-band AIRSAR San Francisco dataset, this result indicates that the proposed model maintains stable discrimination of urban subclasses across different sensors and frequency bands. The multi-scale fusion strategy of the complex-valued HRNet may contribute to this stability by integrating scattering features across resolutions and reducing sensitivity to resolution-specific texture patterns.
The quantitative results are summarized in
Table 7. The proposed method achieves an mIoU of 96.38%, exceeding the second-best complex-valued method, L-CV-DeepLabv3+, by 1.58 percentage points. Since the overall performance of most methods on this dataset is already relatively high, this improvement indicates that the proposed architecture provides additional benefit even in a high-accuracy regime.