Next Article in Journal
Joint Optimization of Trajectory-Resource Allocation and Deep Task Partial Offloading for MEC-Enabled Multi-UAV
Previous Article in Journal
Validation of Insole Pressure Sensor Algorithms: Implications for In-Field Detection of Initial Contact and Hamstring Muscle Pre-Activity During Side-Cutting
Previous Article in Special Issue
SW-Net: A Direction-Aware Deep Learning Model for Shipwreck Segmentation in Side-Scan Sonar Imagery
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Frequency-Aware Refinement Network with Multi-Scale Fusion for Remote Sensing Change Detection

1
School of Digital Low-Altitude, Suzhou Polytechnic University, Suzhou 215104, China
2
Information Center, Suzhou Polytechnic University, Suzhou 215104, China
3
Department of Applied Mathematics and Computer Science, Duke Kunshan University, Suzhou 215316, China
4
School of Automation, Southeast University, Nanjing 210096, China
*
Author to whom correspondence should be addressed.
Sensors 2026, 26(11), 3538; https://doi.org/10.3390/s26113538
Submission received: 4 April 2026 / Revised: 13 May 2026 / Accepted: 1 June 2026 / Published: 3 June 2026
(This article belongs to the Special Issue Image Processing and Analysis for Object Detection: 3rd Edition)

Abstract

Remote sensing change detection (RSCD) identifies land cover variations by comparing bi-temporal images. However, conventional methods relying solely on RGB domain information often fail to distinguish changed objects from visually similar backgrounds, especially in complex scenarios. To overcome this limitation, we propose a frequency-aware refinement network (FARNet) that follows a coarse-to-fine strategy. In the first stage, we design a frequency-aware module (FAM) that learns frequency domain information to identify the blurred boundaries of changed objects that resemble the background, enabling coarse localization of potential change regions. In the second stage, recognizing that high-resolution RGB domain details provide richer spatial information than frequency-domain features, we design a refinement fusion module (RFM) that leverages these RGB details to correct and refine segmentation boundaries, ensuring precise detection. Finally, edge loss is applied to preserve high-frequency details, enhancing the precision of change detection. Extensive experiments on benchmark datasets demonstrate that FARNet significantly outperforms existing methods, achieving superior accuracy and robustness in complex change detection scenarios.

1. Introduction

Remote sensing change detection (RSCD) aims to identify changes between two images of the same geographic location captured at different moments. This technology has significant value in urban planning, agricultural monitoring, and ecological assessment [1,2,3]. With the significant progress made in satellite imaging systems, the change detection community has gained substantial data resources and technical support, greatly promoting technological progress. Currently, change detection technology includes both machine and deep learning-based methods.
Traditional machine learning methods were commonly employed for change detection before the widespread adoption of deep learning. These methods can be broadly categorized into pixel-based and object-based approaches. Pixel-based methods rely on direct comparisons of individual pixel values between bi-temporal images to detect changes. They generate difference images and create change maps based on predefined thresholds. Common techniques include simple pixel comparison [4], ratio pixel comparison [5,6], and pixel transformation [7,8,9]. These methods are computationally simple and cost-effective, as they do not require complex feature extraction or model training. However, they are sensitive to environmental factors such as illumination changes and shadows, which can alter spectral information and increase misclassification. Additionally, pixel-based methods often ignore spatial context, potentially causing isolated pixels to be incorrectly identified as changes, thus increasing the false alarm rate. Object-based methods improve change detection by incorporating spatial context. They segment images into meaningful objects and extract features such as edges, textures, and shapes to identify changes. By analyzing objects rather than individual pixels, these methods can reduce false alarms. Object-based methods are often combined with machine learning algorithms, including Support Vector Machine (SVM) [10], Random Forest (RF) [11], and K-Nearest Neighbors (KNNs) [12]. While they generally achieve higher detection accuracy than pixel-based methods by leveraging prior knowledge, such prior knowledge may not always be readily available, and the robustness of these methods can vary across different scenarios.
Deep learning methods have emerged as a dominant approach in change detection, offering superior accuracy and robustness compared to traditional techniques. These methods can handle complex changes in imagery without requiring handcrafted features or special conditions. Convolutional neural networks (CNNs) excel at extracting high-level representations from temporal image pairs. For instance, Daudt et al. [13] proposed U-Net-based networks for change detection. However, deeper networks increase parameter counts and computational costs. Liu et al. [14] addressed this by replacing standard convolutions with depthwise separable convolutions [15], reducing both parameters and computation. Wang et al. [16] further extended the receptive field using dilated convolutions [17], enabling the model to capture larger context without increasing parameter count. Transformers [18] are increasingly applied to change detection due to their ability to model long-range dependencies. Unlike CNNs, which are limited by their local receptive fields, Transformers leverage self-attention mechanisms to capture global contextual information. Hybrid networks combining CNNs and Transformers, such as those by Chen et al. [19] and Li et al. [20], balance local and non-local attention and enhance change-related features through modules like discrepancy boosting and cross-temporal joint attention [21]. Pure Transformer architectures have also been explored, demonstrating competitive performance, while Zhang et al. [22] proposed computational optimizations to reduce the quadratic complexity of multi-head attention.
Although existing methods have shown success, they depend solely on RGB domain information. This limitation leads to reduced performance, as there is ambiguity between changed objects and the background in challenging scenarios, as illustrated in Figure 1. In frequency analysis, different frequency components indicate different characteristics of the object, which are more in a targeted manner. Different from the optical characteristics in the RGB domain, the frequency characteristics are helpful in locating the initial positions of different objects [23]. Inspired by this, we propose a frequency-aware refinement network (FARNet). This network initially identifies changed objects in the frequency domain and subsequently enhances their fine details within the RGB domain, effectively exploiting both frequency and RGB information to address ambiguity through a coarse-to-fine strategy.
First, a two-branch Transformer encoder is employed to extract multi-scale representations from bi-temporal images, enabling effective modeling of long-range dependencies and contextual information. Building upon these representations, we introduce a frequency-aware coarse localization stage, in which the frequency-aware module (FAM) is designed to leverage both high-frequency and low-frequency information to generate coarse localization maps. High-frequency components capture sharp changes, such as the edges and boundaries of changed objects, whereas low-frequency components represent large-scale structural changes. By integrating information from multiple frequency bands, the FAM provides a coarse but informative localization map that highlights potential change regions while preserving structural integrity. Following this, in the detail-preserving refinement fusion stage, the refinement fusion module (RFM) is designed to enhance the coarse localization results. RFM fuses the coarse localization maps with multi-scale contextual features derived from the Transformer encoder. This fusion enables the network to refine object details in the RGB domain by leveraging both spatial context and semantic cues. Through multi-scale attention and feature aggregation, RFM effectively sharpens the boundaries of changed regions and reduces false positives, ensuring that small or subtle changes are accurately delineated.
Finally, a lightweight segmentation head [26] is employed to decode the refined and fused features into the final change detection map. Additionally, to enhance the representation of high-frequency information, an edge loss [27] term is incorporated during training. This loss emphasizes the importance of edge regions, guiding the network to focus on boundaries and fine structural details, which further improves the precision of change detection. The main contributions of this work are summarized as follows:
1.
We propose a novel framework termed FARNet, which effectively integrates frequency-domain analysis with RGB-domain refinement to improve change detection performance.
2.
We design a frequency-aware module (FAM) to perform coarse localization of changed objects by exploiting frequency-domain representations, providing spatial priors for subsequent refinement.
3.
We design a refinement fusion module (RFM) that integrates coarse localization maps with multi-scale contextual features, enhancing edge and structural information of changed objects through RGB-domain detail refinement.

2. Related Works

2.1. CNN-Based Methods

The inherent weight-sharing mechanism of CNN further establishes them as a cornerstone in processing remote sensing data. Building upon the architectural innovations in CNN-based change detection, fully convolutional networks (FCNs) have become prevalent for their end-to-end feature extraction capabilities in pixel-level analysis. Notably, Peng et al. [28] and Fang et al. [29] develop dense skip connection mechanisms that address the semantic gap through multi-scale feature fusion while substantially mitigating localization errors in deep feature maps. Furthermore, Ji et al. [30] implement a multi-scale perception strategy using dilated convolutions with varying receptive fields, achieving simultaneous detection of both micro-scale and macro-scale changing objects through hierarchical feature modeling.
Recent research has introduced attention mechanisms to address these limitations, dynamically refining feature focus to enhance adaptability to imaging condition changes and robustness to spatial transformations. Among these mechanisms, channel attention [31,32,33] adjusts channel weights of feature maps to emphasize specific spectral bands or features dynamically. Spatial attention [34,35] enhances focus on key changed objects by reducing attention to irrelevant background regions. Some studies [24,36,37,38,39] have combined channel and spatial attention to capture more distinctive changed objects.

2.2. Transformer-Based Methods

Transformer architecture has set a new standard in natural language processing with its impressive performance and capabilities. At its core, the Transformer captures positional dependencies in sequences using self-attention mechanisms and positional encoding. Vision Transformer (ViT) [40] expanded this concept into the field of computer vision.
Given the effectiveness of Transformers in the visual domain, many studies have applied them. SiamMixFormer [41] is a representative model in this field. SiamMixFormer adopts a novel design that transforms change features from the previous moment into query vectors and those from the subsequent moment into key-value pairs. Using self-attention, it effectively integrates bi-temporal features to enhance change detection accuracy. The Swin Transformer [42] has a powerful local window self-attention mechanism. SwinSUNet [43] and Feature Transformer Network (FTN) [44] both utilize the Swin Transformer as a core component to improve change information extraction, but they differ in their decoding strategies. SwinSUNet employs Swin Transformer units in the decoding phase to iteratively refine change features, thereby capturing changed object details more effectively. FTN, by contrast, employs a progressive attention feature pyramid design.
In recent years, to enhance the efficiency of tasks such as RSCD, researchers have developed a variety of hybrid models. In this context, several innovative models [25,45,46,47] have emerged, which are designed to integrate the strengths of CNN with Transformers. For example, Liu et al. [48] introduce an agricultural land change detection framework that combines CNN-based encoders and Transformer-based decoders. Feng et al. [49] present two attention-guided cross-scale fusion modules, emphasizing fine-grained features from CNNs and context-aware features from Transformers. These modules ensure effective information exchange between these two types of features at the same spatial resolution, thereby enhancing the understanding of complex change scenarios.

2.3. Frequency-Domain and Frequency–Spatial Hybrid Networks

Frequency-domain modeling has proven effective for remote sensing imagery, since high-frequency components encode fine boundaries while low-frequency components capture global semantics. AFENet [50] adaptively decouples RGB inputs into high- and low-frequency distributions for content-aware feature enhancement, and FSDENet [51] applies the Fast Fourier Transform (FFT) to perform global frequency mapping that jointly enhances frequency- and spatial-domain details. For change detection specifically, FSG-Net [52] introduces a frequency–spatial synergistic gated architecture that fuses the two domains via a learnable gate, achieving state-of-the-art results on high-resolution RSCD benchmarks. However, its gating operates at a single scale and relies on a relatively heavy decoder.
In contrast, our method adopts a coarse-to-refinement paradigm tailored for RSCD. Specifically, the proposed frequency-aware module (FAM) performs coarse localization of changed regions in the frequency domain by jointly exploiting high-frequency and low-frequency representations, while the refinement fusion module (RFM) further restores spatial details and structural consistency in the RGB domain. This design not only leverages the localization capability of frequency representations but also effectively compensates for the spatial information loss introduced during frequency transformation.

2.4. Contextual Refinement Techniques

Context modeling is critical for suppressing pseudo-changes caused by illumination, seasonal variation, and registration noise. Transformer-based methods such as BIT [19], ChangeFormer [53], and SwinSUNet [43] capture long-range dependencies through self-attention, while DSIFN [36] and SNUNet [29] strengthen cross-temporal context via deep difference fusion and dense skip connections. These designs, however, are either computationally heavy or operate purely in the spatial domain, which limits their ability to recover boundaries lost in the frequency domain. Our refinement fusion module (RFM) instead operates on frequency–spatial decoupled features and selectively re-injects high-frequency cues into the low-frequency semantic context, refining both the what and where of detected changes at a substantially lower cost.

3. Methodology

3.1. Overall Structure

In this paper, we propose a FARNet for RSCD. As shown in Figure 2, in the dual-branch feature extraction stage, the bi-temporal input images { T 1 , T 2 R H × W × 3 } are processed through a weight-shared Siamese Transformer encoder, generating multi-scale hierarchical features represented as { X i t 1 , X i t 2 R H 2 i + 1 × W 2 i + 1 × C i } i = 1 4 , where C i takes values of 32, 64, 160, and 256 for i = 1 , , 4 , respectively. Subsequently, we used concatenation followed by convolutional operations to generate the temporal difference features with a unified channel dimension of C = 64 from the bi-temporal features { d i R H 2 i + 1 × W 2 i + 1 × C } i = 1 4 . Afterwards, in the frequency-aware coarse localization stage, given d i as input, we design the frequency-aware module (FAM), which first extracts frequency domain features from d i and then obtains the coarse localization map M R H × W through the segmentation head. Then, in the detail-preserving refinement fusion stage, M and d i are given as inputs. We design the refinement fusion module (RFM), under the guidance of M, to progressively achieve feature d i correction and cross-layer fusion. Finally, the fusion feature extracted from the RFM is input into the decoder to generate the anticipated change map O R H × W .
The FAM effectively decouples high-frequency and low-frequency information, thereby enhancing feature discrimination. The RFM captures global and local dependencies, improving semantic consistency. The lightweight segmentation head [26] ensures efficient reconstruction while preserving fine details, and the edge-aware loss [27] algorithm explicitly guides boundary refinement. Together, these components work synergistically, enabling FARNet to achieve superior performance in high-resolution remote sensing change detection by enhancing detail preservation, boundary accuracy, and overall feature representation.

3.2. Frequency-Aware Module

As described in [54], octave convolution (Octave) can learn to decompose images into low-frequency and high-frequency components in the frequency domain. Low-frequency features correspond to pixels with gentle intensity variations, such as large homogeneous color regions, and they typically represent the main body of objects. In contrast, high-frequency components refer to pixels with strong intensity changes, such as object edges in images. Inspired by this, and to effectively resolve the semantic ambiguity between changed objects and the background in the RGB domain, we design FAM. FAM is a frequency-guided coarse localization module. This module automatically decomposes features into high-frequency and low-frequency parts to form a frequency-domain representation of changed objects, and then, it progressively fuses multi-scale frequency representations from bi-temporal images to generate an initial change localization map. The detailed process is shown in Figure 2.
Specifically, we first employ octave convolution [54] to enable the network to automatically focus on both high-frequency and low-frequency information, which enables FARNet to simultaneously capture detailed and structural features. As shown in Figure 3, the detailed process of the octave convolution output Y i = { Y i H , Y i L } is described as follows:
Y i H = F ( d i H ; W H H ) + Upsample ( F ( d i L ; W L H ) ) ,
Y i L = F ( d i L ; W L L ) + F ( pool ( d i H ) ; W H L ) ,
where F ( X ; W ) represents a convolutional operation with learnable parameters W, Upsample ( · ) denotes an upsampling operation, and pool ( · ) denotes an average pooling operation.
Considering that high-frequency textures and low-frequency contour attributes are both crucial for localizing changed objects, so we integrate them into a unified frequency domain representation:
f i = Y i H Upsample ( Y i L ) ,
where ⊕ denotes elementwise addition.
Then, as shown in Figure 2, deep frequency domain features are progressively integrated to better utilize the semantic relationships between adjacent layers. In addition to modeling high-level feature associations, we leverage high-resolution information from the first layer to enhance details. The process is as follows:
f d = Upsample ( f 3 Upsample ( f 4 ) ) ( f 2 Upsample ( f 3 ) ) ,
f = cat ( Upsample ( f d ) , f 1 ) ,
where ⊕ denotes elementwise addition, ⊗ denotes elementwise multiplication, and cat ( · ) represents concatenation along with a 1 × 1 convolution.
Finally, the feature map f is upsampled to increase its size and serve as the input to the multilayer perceptron (MLP). By repeating the operations of upsampling and MLP, detailed information of the image is gradually restored and expressed as follows:
M = Conv 3 × 3 ( MLP ( Upsample ( MLP ( Upsample ( f ) ) ) ) ) ,
where Conv 3 × 3 denotes the convolution operation with a kernel size of 3 × 3 . We use simple convolution to obtain a localization change map M, which reveals the initial location of the object that has changed.

3.3. Refinement Fusion Module

In the previous section, we introduced the use of frequency domain features for the coarse localization of changed objects. Although this stage can roughly detect the changed objects, the precision and completeness of localization are still insufficient. Considering that the high-resolution details in the RGB domain provide more spatial information than frequency-domain features, they enable the network to better adjust the segmentation boundaries to conform to the actual object contours and edges. Therefore, we design an RFM that leverages detailed RGB domain information to correct and refine segmentation boundaries. The process is shown in Figure 4.
We first reduce the number of input features { X i t 1 , X i t 2 } i = 1 4 channels to 64, denoted as { F i t 1 , F i t 2 } i = 1 4 , which improves computational efficiency while still retaining relevant information for detection. Then, we extract multi-level feature differences { F i diff } i = 1 4 from the bi-temporal features { F i t 1 , F i t 2 } i = 1 4 . This can be specifically expressed as follows:
F i diff = Relu ( BN ( Conv 3 × 3 ( cat ( F i t 1 , F i t 2 ) ) ) ) ,
where cat ( · ) represents concatenation along the channel dimension, BN represents the normalization operation, and ReLU represents the activation function.
In order to make full use of the existing coarse localization map M, the coarse localization map is resized to produce three coarse localization maps { M j R H 2 j + 2 × W 2 j + 2 } j = 1 3 of different scales. Given that { P i out R H 2 i + 1 × W 2 i + 1 } i = 1 4 denotes the output of RFM, where P 4 out represents F 4 diff . We first multiply the feature maps { P i out } i = 2 4 by the coarse maps M j , a corrective guide that is particularly beneficial when objects blend with their surroundings. Then, we use CBAM [55] to adaptively focus on important features. Subsequently, by upsampling and reshaping, the feature map Q R H 2 i + 1 W 2 i + 1 × C is obtained. Meanwhile, the feature { F i diff } i = 1 3 , after being processed by CBAM, is reshaped into K R H 2 i + 1 W 2 i + 1 × C . This process is calculated by the following:
K = Reshape ( CBAM ( F i diff ) ) ,
Q = Reshape ( Upsample ( CBAM ( P i + 1 out M j ) ) ) ,
where ⊙ denotes elementwise multiplication, and Upsample(·) represents an upsampling operation.
To fully integrate multi-level features and feed deep semantic information back into shallow features, we capture the correlation between cross-level features by calculating the similarity of the same pixel across feature maps at different scales. This approach effectively promotes interactions and the sharing of information. Finally, the feature similarity map S is calculated as follows:
S = K Q ,
where S R H 2 i + 1 W 2 i + 1 × H 2 i + 1 W 2 i + 1 , and denotes matrix transpose operator.
We select the maximum similarity value for each row of pixels in S. This process is calculated by the following:
S max = max i = 1 H W S [ : , i ] ,
where S max R H 2 i + 1 W 2 i + 1 .
Afterwards, we reshape S max into M R H 2 i + 1 × W 2 i + 1 to enhance the attention of the network on changing objects. Finally, the output of the proposed RFM is as follows:
P i out = M F i diff F i diff ,
where ⊙ denotes elementwise multiplication, and ⊕ denotes elementwise addition.

3.4. Loss Functions

We use cross-entropy loss [53] and edge loss [27] to optimize the network’s parameters. Cross-entropy loss effectively guides the network to learn global discriminative features that help distinguish between different classes. Edge loss focuses on optimizing the performance of the network on object boundaries by penalizing errors in the edge regions. In cases where class boundaries are blurred, edge loss is particularly effective, significantly enhancing high-frequency details. The calculation formulas for the loss functions are as follows:
L = α L c e + ( 1 α ) L e d g e ,
where L denotes the loss between the final change map O and ground truth, L c e represents the cross-entropy loss function, L e d g e represents edge loss, and α is a hyperparameter used to balance cross-entropy loss and edge loss.

4. Experiments

4.1. Datasets

FARNet uses supervised learning and requires labeled change detection datasets for training. The experiments were performed on three benchmark datasets. The WHU-CD dataset [30] comprises a pair of aerial images at 0.2 m resolution with dimensions of 32,507 × 15,354 pixels. The dataset covers a city in New Zealand and focuses on detecting changes in buildings. These images were cropped into 256 × 256 patches, generating 5947 training, 743 validation, and 744 testing samples. The LEVIR-CD dataset [56] contains 637 pairs of high-resolution Google Earth images, each with 0.5 m resolution and 1024 × 1024 pixel dimensions. After patch cropping (256 × 256), we obtained 7120 training, 1024 validation, and 2048 testing samples. The dataset covers multiple cities in TX, USA, including 20 different areas. The LEVIR-CD+ dataset [56] is a large-scale building change detection benchmark built upon LEVIR-CD. It includes 985 image pairs with roughly 80,000 building change instances, posing a substantial challenge for large-scale change detection. Non-overlapping 256 × 256 patches were cropped, yielding 10,192 training and 5568 testing samples.

4.2. Implementation Details

In the experiments, the network was trained using Python 3.9.20 and the PyTorch 1.7.1 framework on two NVIDIA RTX 2080Ti GPUs. The AdamW optimizer was used with the following settings: a batch size of 16, an initial learning rate of 0.0001, momentum of 0.99, epochs of 200, and weight decay of 0.01. A linear learning rate decay strategy was implemented. To ensure the reproducibility of the experiments, we fixed the random seed to 42 in all experiments and will set this in the code. Data augmentation was applied to all experimental data during the training phase to improve robustness and generalization. The techniques included flipping, cropping, and Gaussian blurring.

4.3. Evaluation Metrics

In the evaluation phase, five widely used metrics are employed: precision (Pre), recall (Rec), F1 score (F1), intersection over union (IoU), and overall accuracy (OA). Their definitions are as follows:
Pre = TP / ( TP + FP ) ,
Rec = TP / ( TP + FN ) ,
F 1 = 2 × Rec × Pre / ( Rec + Pre ) ,
IoU = TP / ( TP + FP + FN ) ,
OA = ( TP + TN ) / ( TP + TN + FP + FN ) ,
where TP, TN, FP, and FN denote the number of true positives, true negatives, false positives, and false negatives, respectively. The five evaluation metrics take values ranging from 0 to 1, with higher values indicating better network performance. Notably, the IoU and F1 better reflect the detection capability of the network in the change detection task.

4.4. Compared Methods

To validate the effectiveness of FARNet for RSCD, we selected nine state-of-the-art networks, which are as follows:
1.
FC-EF [13] concatenates two input images from different timestamps into a multi-channel image, which is processed by the FCN for feature extraction and change detection.
2.
FC-Siam-Diff [13] is built upon FC-EF and extracts multi-level features from bi-temporal images. It applies difference operations to generate a difference map, emphasizing regions of change. Finally, it uses a twin network with shared weights to fuse these features for more accurate change detection.
3.
FC-Siam-Conc [13] is based on FC-EF and uses a twin network with shared weights for extracting multi-level features. This network combines bi-temporal features through concatenation.
4.
BIT [19] uses ResNet-18 [57] to extract high-level features from bi-temporal images, mapping them into a semantic space. It then leverages the encoder–decoder structure of Transformers for global context modeling. Finally, the enriched semantic representations are mapped back to the pixel space, and difference operations are applied to highlight change regions.
5.
ChangFormer [53] is a Transformer-based twin network architecture. Through multi-scale feature modeling, it captures remote sensing details more effectively, improving change detection performance.
6.
DMINet [21] extracts multi-level features using ResNet-18 and concatenates them channel-wise. It uses a joint attention module to learn spatiotemporal relationships across different feature levels. Finally, it provides multi-level supervision through a feature decoder to enhance the detection of changed objects.
7.
SEIFNet [24] employs a twin hierarchical backbone network to capture multi-level image information through feature maps. It uses attention mechanisms to extract global and local information from bi-temporal features, highlighting changed objects. Finally, a fusion module integrates cross-level features to enhance change detection accuracy.
8.
STADE-CDNet [25] uses a Transformer encoder to extract low-to-high-level semantic information from bi-temporal images, capturing temporal dependencies. A memory module stores temporal information, and a difference enhancement module emphasizes change information, improving change detection performance.
9.
SDA-Encoding [58] employs a wavelet transform to decompose features into low-frequency and high-frequency components. In the high-frequency branch, local details and boundary information are enhanced through spatial pyramid pooling and cross-scale alignment fusion. In the low-frequency branch, coordinate attention and selective fusion attention are used to restore positional information and model region-level contextual dependencies. Finally, the two frequency branches are complementarily fused in the spatial domain to achieve unified modeling of both fine-grained and structural changes.

4.5. Results and Discussion

4.5.1. Results on WHU-CD Dataset

Table 1 provides the quantitative results of various methods on the WHU-CD dataset. FARNet achieves the best results across five commonly used evaluation metrics. Notably, its IoU and F1 are recorded at 90.00% and 94.74%, respectively, outperforming all other methods.
Figure 5 presents the visualization comparison results on the WHU-CD dataset. In Figure 5a,b, FARNet demonstrates its ability to accurately segment the changed objects, highlighting its effectiveness in change detection. In contrast, other methods generate a higher number of false detections and missed detections, particularly in the edge regions where segmentation is more challenging. As shown in Figure 5c, when multiple changed objects are very small, FARNet is the only method capable of detecting all changes accurately, demonstrating its superiority in detecting fine-grained changes. However, despite these strengths, FARNet still faces certain limitations. For instance, as shown in Figure 5d, in extremely complex scenarios with highly cluttered backgrounds and subtle changes, some false detections may still occur. While it is improved compared to other methods, it may not be perfect in all cases.

4.5.2. Results on LEVIR-CD Dataset

Table 2 provides the quantitative results of various methods on the LEVIR-CD dataset. FARNet outperforms other methods across four key evaluation metrics. Although its precision is 1.02% lower than the top-ranked SDA-Encoding, it surpasses SDA-Encoding in recall by 1.25%. Additionally, FARNet achieves IoU and F1 values that are 0.23% and 0.13% higher, respectively, than those of the second-ranked SEIFNet.
Figure 6 presents the visualization comparison results on the LEVIR-CD dataset. In Figure 6a, in complex scenes where changed objects are challenging to distinguish from the background in the RGB domain, FARNet is the only method that accurately segments all changed objects. In Figure 6b, due to ambiguity between the changed objects and the background, only FC-Siam-Di and FARNet successfully detect changes in small buildings, whereas other methods fail to capture these subtle changes effectively. In Figure 6c,d, most methods fail to detect the changed buildings effectively, further highlighting that FARNet can effectively distinguish changed objects from the background.

4.5.3. Results on LEVIR-CD+ Dataset

Table 3 provides the quantitative results of various methods on the LEVIR-CD+ dataset. FARNet outperforms other methods across three key metrics, demonstrating its superior performance in addressing the challenges of dataset. On the more challenging LEVIR-CD+ dataset, FARNet achieved the highest scores in the most critical indicators, namely IoU and F1. It surpassed BIT by 2.66% and 1.75%, respectively. FARNet also demonstrated satisfactory performance in terms of precision and recall.
Figure 7 presents the visualization comparison results on the LEVIR-CD+ dataset. In Figure 7a–c, in bi-temporal images with background interference, only FARNet can detect and clearly segment all the changed objects. In Figure 7d, FARNet produces fewer green and red pixels, clearly segmenting the changed objects. These results indicate that FARNet significantly reduces false positives and false negatives caused by irrelevant noise. Finally, the generalization capability across different datasets or unseen regions requires further validation, which could be addressed in future work.

4.5.4. Ablation Studies

To determine the contribution of each component within FARNet, ablation studies were performed on both the LEVIR-CD and WHU-CD datasets. The experimental outcomes, detailed in Table 4 and Table 5, were obtained by systematically removing individual components and measuring the resulting performance fluctuations. These results offer insights into the relative importance of each component to the overall effectiveness of FARNet.
1.
Ablation Study of Frequency-Aware Module (FAM): To address the detection ambiguity caused by the similarity of features between changed objects and the background in the RGB domain in remote sensing scenarios, the FAM module is designed as follows: (1) Employ octave convolution to explicitly separate high-frequency details from low-frequency contour features, thereby enhancing boundary discrimination for similar targets; (2) generate a prior for the changed objects through coarse localization, guiding the subsequent refinement module to focus on key areas. As shown in Table 4, on the LEVIR-CD dataset, FAM improved IoU by 0.69% and F1 by 0.40%; on the WHU-CD dataset, IoU increased by 0.51% and F1 by 0.28%, verifying its effectiveness. As shown in Figure 8b, after the application of octave convolution, these features more effectively represent the positional information of the changed areas.
2.
Ablation Study of Refinement Fusion Module (RFM): To make the segmentation boundaries clearer, the RFM is designed as follows: (1) Introduce high-resolution features from the RGB domain and fuse differential features from adjacent layers using cross-layer channel attention mechanisms to enhance edge detail modeling; (2) use the coarse localization map for spatial constraints to generate refined segmentation results. As shown in Table 4, on the LEVIR-CD dataset, RFM improved IoU by 0.47% and F1 by 0.27%, and on the WHU-CD dataset, IoU increased by 0.46% and F1 increased by 0.26%, verifying its effectiveness. As shown in Figure 8c, the coarse localization map has located the changed areas, but the segmentation boundaries are still blurred. After RFM processing, the feature map mainly focuses on the changed areas, significantly reducing noise interference on the segmentation boundaries.
3.
Ablation Study of Loss Function Weights: We aim to assess the impact of the loss function coefficients on the performance of FARNet using the LEVIR-CD dataset. The goal of these experiments was to understand how adjusting the coefficients affects overall performance. The results in Table 5 show that the best performance was achieved with cross-entropy and edge loss coefficients set to 0.9 and 0.1, respectively. This suggests that edge loss enhances high-frequency details, improving the ability of the network to detect changes more accurately. Thus, subsequent experiments used a cross-entropy coefficient of 0.9. Although results for α in the range of 0.1 to 0.4 were not included, preliminary experiments indicate that performance in this lower range is significantly worse, and therefore has limited practical relevance. As shown in Figure 9c, without edge loss, the boundaries of the changed areas are blurrier. In contrast, as shown in Figure 9d, with the addition of edge loss, the boundaries become clearer, enabling the model to more accurately distinguish the changed objects.
To further evaluate the robustness of FARNet under challenging real-world conditions, additional experiments were conducted on the LEVIR-CD dataset by introducing noise corruption and cloud occlusion into the testing images. As shown in Table 6, FARNet maintains competitive performance under both challenging conditions. Under noise corruption, the proposed method achieves 84.48% IoU and a 91.58% F1 score, while under cloud occlusion, it still obtains an IoU of 83.93% and F1 score of 91.27%. Although slight performance degradation can be observed compared with the original testing setting, the decrease remains relatively limited, demonstrating the robustness and generalization capability of the proposed framework in complex real-world scenarios.

4.5.5. Comparison of Complexity

As shown in Table 7, FARNet has 55.92 M parameters and requires 41.84 G FLOPs, which are higher than other methods. Nevertheless, this additional complexity leads to superior change detection performance, demonstrating the effectiveness of the proposed frequency–RGB dual-domain fusion mechanism.

4.5.6. Discussion

For the RSCD task, this paper introduces a coarse-to-fine frequency refinement network (FARNet), which consists primarily of two stages. To effectively address the ambiguity between changed objects and the background in the RGB domain, we design the frequency-aware module (FAM) in the frequency-aware coarse localization stage, which leverages frequency domain information to help the network locate the initial positions of changed objects. To enable precise segmentation of changed objects, we design the refinement fusion module (RFM) in the detail-preserving refinement fusion stage, which refines and corrects the information of changed objects using RGB domain information. Additionally, edge loss is introduced to improve the ability of network to capture and optimize high-frequency details, specifically targeting the edge regions of the image. FARNet outperforms other advanced algorithms on the WHU-CD, LEVIR-CD, and LEVIR-CD+ datasets by excelling in changed object recognition and showing resilience to interference. However, this study solely focused on identifying building changes. In the future, we plan to explore the identification of multi-category changed objects in greater depth. Also, we plan to explore weakly supervised learning strategies to reduce reliance on fine-grained annotations and further investigate the potential of frequency-domain features in RSCD. Specifically, in weakly supervised settings, model training often relies on pseudo-labels, and frequency-domain features have a natural advantage in distinguishing real structural changes from low-frequency noise. Therefore, pseudo-labels generated based on frequency-domain information are generally cleaner and more reliable than those relying solely on spatial-domain features, which is expected to further improve the performance ceiling of weakly supervised learning.

5. Conclusions

In this paper, we propose a frequency-aware refinement network (FARNet) to resolve the ambiguity between changed objects and the background in the RGB domain by incorporating frequency domain information. Specifically, a frequency-aware module (FAM) is designed to automatically aware frequency information, guiding the network to produce a coarse localization map during the frequency-aware coarse localization stage. Then, a refinement fusion module (RFM) is designed to utilize the coarse localization map and RGB domain information to achieve progressive correction and fusion of multi-scale features during the detail-preserving refinement fusion stage. Finally, an edge loss function optimizes segmentation results by focusing on high-frequency features. The experimental results demonstrate that FARNet outperforms state-of-the-art algorithms on the WHU-CD, LEVIR-CD, and LEVIR-CD+ datasets. The IoU for each dataset is 90.00%, 85.52%, and 75.65%, and the F1 for each dataset is 94.74%, 92.19%, and 86.13%, respectively.

Author Contributions

Conceptualization, X.Z. and K.Z.; methodology, X.Z. and Y.D.; validation, X.Z.; resources, Z.Z. and Y.D.; writing—original draft preparation, X.Z. and Y.D.; writing—review and editing, Z.Z. and Y.D.; supervision, K.Z. All authors have read and agreed to the published version of this manuscript.

Funding

This work was funded by the Seventh Batch of Science and Technology Development Plan (Agriculture) Project of Suzhou (SNG2023007) and the Jiangsu Higher Vocational College Teachers’ Visiting Study Program (2024GRFX053).

Institutional Review Board Statement

Not applicable.

Informed Consent Statement

Not applicable.

Data Availability Statement

Three publicly available datasets were used in this study. The WHU-CD dataset can be found at https://study.rsgis.whu.edu.cn/pages/download/building_dataset.html (accessed on 1 January 2026). The LEVIR-CD and LEVIR-CD+ datasets can be found at https://justchenhao.github.io/LEVIR/ (accessed on 1 January 2026). The data presented in this study are available upon request from the corresponding author.

Conflicts of Interest

The authors declare no conflicts of interest.

References

  1. Shafique, A.; Cao, G.; Khan, Z.; Asad, M.; Aslam, M. Deep learning-Based change detection in remote sensing images: A review. Remote Sens. 2022, 14, 871. [Google Scholar] [CrossRef]
  2. Jiang, H.; Peng, M.; Zhong, Y.; Xie, H.; Hao, Z.; Lin, J.; Ma, X.; Hu, X. A survey on deep learning-based change detection from high-resolution remote sensing images. Remote Sens. 2022, 14, 1552. [Google Scholar] [CrossRef]
  3. Qin, H.; Wang, J.; Mao, X.; Zhao, Z.; Gao, X.; Lu, W. An Improved Faster R-CNN Method for Landslide Detection in Remote Sensing Images. J. Geovis. Spat. Anal. 2024, 8, 2. [Google Scholar] [CrossRef]
  4. Stow, D. Reducing the effects of misregistration on pixel-level change detection. Int. J. Remote Sens. 1999, 20, 2477–2483. [Google Scholar] [CrossRef]
  5. Zhuang, H.; Hao, M.; Deng, K.; Zhang, K.; Wang, X.; Yao, G. Change detection in SAR images via ratio-based gaussian kernel and nonlocal theory. IEEE Trans. Geosci. Remote Sens. 2022, 60, 5210215. [Google Scholar] [CrossRef]
  6. Su, L.; Gong, M.; Sun, B. Change detection in synthetic aperture radar images based on non-local means with ratio similarity measurement. Int. J. Remote Sens. 2014, 35, 7673–7690. [Google Scholar] [CrossRef]
  7. Lambin, E.F.; Strahlers, A.H. Change-vector analysis in multitemporal space: A tool to detect and categorize land-cover change processes using high temporal-resolution satellite data. Remote Sens. Environ. 1994, 48, 231–244. [Google Scholar] [CrossRef]
  8. Du, P.; Wang, X.; Chen, D.; Liu, S.; Lin, C.; Meng, Y. An improved change detection approach using tri-temporal logic-verified change vector analysis. ISPRS J. Photogramm. Remote Sens. 2020, 161, 278–293. [Google Scholar] [CrossRef]
  9. Celik, T. Unsupervised change detection in satellite images using principal component analysis and k-means clustering. IEEE Geosci. Remote Sens. Lett. 2009, 6, 772–776. [Google Scholar] [CrossRef]
  10. Habib, T.; Inglada, J.; Mercier, G.; Chanussot, J. Support vector reduction in SVM algorithm for abrupt change detection in remote sensing. IEEE Geosci. Remote Sens. Lett. 2009, 6, 606–610. [Google Scholar] [CrossRef]
  11. Seo, D.; Kim, Y.; Eo, Y.; Park, W.; Park, H. Generation of radiometric, phenological normalized image based on random forest regression for change detection. Remote Sens. 2017, 9, 1163. [Google Scholar] [CrossRef]
  12. Sun, Y.; Lei, L.; Guan, D.; Kuang, G. Iterative robust graph for unsupervised change detection of heterogeneous remote sensing images. IEEE Trans. Image Process. 2021, 30, 6277–6291. [Google Scholar] [CrossRef] [PubMed]
  13. Daudt, R.C.; Le Saux, B.; Boulch, A. Fully convolutional siamese networks for change detection. In Proceedings of the 2018 25th IEEE International Conference on Image Processing (ICIP), Athens, Greece, 7–10 October 2018; pp. 4063–4067. [Google Scholar] [CrossRef]
  14. Liu, R.; Jiang, D.; Zhang, L.; Zhang, Z. Deep depthwise separable convolutional network for change detection in optical aerial images. IEEE J. Sel. Top. Appl. Earth Obs. Remote Sens. 2020, 13, 1109–1118. [Google Scholar] [CrossRef]
  15. Chollet, F. Xception: Deep Learning with Depthwise Separable Convolutions. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, Honolulu, HI, USA, 21–26 July 2017; pp. 1800–1807. [Google Scholar]
  16. Wang, M.; Tan, K.; Jia, X.; Wang, X.; Chen, Y. A deep siamese network with hybrid convolutional feature extraction module for change detection based on multi-sensor remote sensing images. Remote Sens. 2020, 12, 205. [Google Scholar] [CrossRef]
  17. Yu, F.; Koltun, V.; Funkhouser, T. Dilated Residual Networks. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, Honolulu, HI, USA, 21–26 July 2017; pp. 636–644. [Google Scholar]
  18. Vaswani, A.; Shazeer, N.; Parmar, N.; Uszkoreit, J.; Jones, L.; Gomez, A.N.; Kaiser, Ł.; Polosukhin, I. Attention is all you need. In Proceedings of the 31st Conference on Neural Information Processing Systems, Long Beach, CA, USA, 4–9 December 2017; pp. 5998–6008. [Google Scholar]
  19. Chen, H.; Qi, Z.; Shi, Z. Remote sensing image change detection with transformers. IEEE Trans. Geosci. Remote Sens. 2021, 60, 5607514. [Google Scholar] [CrossRef]
  20. Li, Q.; Zhong, R.; Du, X.; Du, Y. TransUNetCD: A hybrid transformer network for change detection in optical remote-sensing images. IEEE Trans. Geosci. Remote Sens. 2022, 60, 5622519. [Google Scholar] [CrossRef]
  21. Feng, Y.; Jiang, J.; Xu, H.; Zheng, J. Change detection on remote sensing images using dual-branch multilevel intertemporal network. IEEE Trans. Geosci. Remote Sens. 2023, 61, 4401015. [Google Scholar] [CrossRef]
  22. Zhang, X.; Cheng, S.; Wang, L.; Li, H. Asymmetric cross-attention hierarchical network based on cnn and transformer for bitemporal remote sensing images change detection. IEEE Trans. Geosci. Remote Sens. 2023, 61, 2000415. [Google Scholar] [CrossRef]
  23. Cong, R.; Sun, M.; Zhang, S.; Zhou, X.; Zhang, W.; Zhao, Y. Frequency perception network for camouflaged object detection. In Proceedings of the 31st ACM International Conference on Multimedia, Ottawa, ON, Canada, 29 October–3 November 2023; pp. 1179–1189. [Google Scholar]
  24. Huang, Y.; Li, X.; Du, Z.; Shen, H. Spatiotemporal enhancement and interlevel fusion network for remote sensing images change detection. IEEE Trans. Geosci. Remote Sens. 2024, 62, 5609414. [Google Scholar] [CrossRef]
  25. Li, Z.; Cao, S.; Deng, J.; Wu, F.; Wang, R.; Luo, J.; Peng, Z. STADE-CDNet: Spatial-temporal attention with difference enhancement-based network for remote sensing image change detection. IEEE Trans. Geosci. Remote Sens. 2024, 62, 5611617. [Google Scholar] [CrossRef]
  26. Xie, E.; Wang, W.; Yu, Z.; Anandkumar, A.; Alvarez, J.M.; Luo, P. SegFormer: Simple and efficient design for semantic segmentation with transformers. Adv. Neural Inf. Process Syst. 2021, 34, 12077–12090. [Google Scholar]
  27. Shao, H.; Zeng, Q.; Hou, Q.; Yang, J. MCANet: Medical Image Segmentation with Multi-Scale Cross-Axis Attention. arXiv 2023, arXiv:2312.08866. [Google Scholar]
  28. Peng, D.; Zhang, Y.; Guan, H. End-to-End Change Detection for High Resolution Satellite Images Using Improved UNet++. Remote Sens. 2019, 11, 1382. [Google Scholar] [CrossRef]
  29. Fang, S.; Li, K.; Shao, J.; Li, Z. SNUNet-CD: A Densely Connected Siamese Network for Change Detection of VHR Images. IEEE Geosci. Remote Sens. Lett. 2022, 19, 8007805. [Google Scholar] [CrossRef]
  30. Ji, S.; Wei, S.; Lu, M. Fully Convolutional Networks for Multisource Building Extraction From an Open Aerial and Satellite Imagery Data Set. IEEE Trans. Geosci. Remote Sens. 2019, 57, 574–586. [Google Scholar] [CrossRef]
  31. Zheng, J.; Feng, Y.; Bai, C.; Zhang, J. Hyperspectral image classification using mixed convolutions and covariance pooling. IEEE Trans. Geosci. Remote Sens. 2020, 59, 522–534. [Google Scholar] [CrossRef]
  32. Wang, Y.; Wang, M.; Hao, Z.; Wang, Q.; Wang, Q.; Ye, Y. MSGFNet: Multi-Scale Gated Fusion Network for Remote Sensing Image Change Detection. Remote Sens. 2024, 16, 572. [Google Scholar] [CrossRef]
  33. Li, S.; Yan, F.; Liao, C.; Hu, Q.; Ma, K.; Wang, W.; Zhang, H. Object-Level Contrastive-Learning-Based Multi-Branch Network for Building Change Detection from Bi-Temporal Remote Sensing Images. Remote Sens. 2025, 17, 217. [Google Scholar] [CrossRef]
  34. Liu, Y.; Pang, C.; Zhan, Z.; Zhang, X.; Yang, X. Building change detection for remote sensing images using a dual-task constrained deep siamese convolutional network model. IEEE Geosci. Remote Sens. Lett. 2020, 18, 811–815. [Google Scholar] [CrossRef]
  35. Xiong, F.; Li, T.; Chen, J.; Zhou, J.; Qian, Y. Mask-Guided Local–Global Attentive Network for Change Detection in Remote Sensing Images. IEEE J. Sel. Top. Appl. Earth Obs. Remote Sens. 2024, 17, 3366–3378. [Google Scholar] [CrossRef]
  36. Zhang, C.; Yue, P.; Tapete, D.; Jiang, L.; Shangguan, B.; Huang, L.; Liu, G. A deeply supervised image fusion network for change detection in high resolution bi-temporal remote sensing images. ISPRS J. Photogramm. Remote Sens. 2020, 166, 183–200. [Google Scholar] [CrossRef]
  37. Shi, Q.; Liu, M.; Li, S.; Liu, X.; Wang, F.; Zhang, L. A Deeply Supervised Attention Metric-Based Network and an Open Aerial Image Dataset for Remote Sensing Change Detection. IEEE Trans. Geosci. Remote Sens. 2022, 60, 5604816. [Google Scholar] [CrossRef]
  38. Wu, J.; Xie, C.; Zhang, Z.; Zhu, Y. A deeply supervised attentive high-resolution network for change detection in remote sensing images. Remote Sens. 2022, 15, 45. [Google Scholar] [CrossRef]
  39. Ren, H.; Xia, M.; Weng, L.; Hu, K.; Lin, H. Dual-Attention-Guided Multiscale Feature Aggregation Network for Remote Sensing Image Change Detection. IEEE J. Sel. Top. Appl. Earth Obs. Remote Sens. 2024, 17, 4899–4916. [Google Scholar] [CrossRef]
  40. Dosovitskiy, A.; Beyer, L.; Kolesnikov, A.; Weissenborn, D.; Zhai, X.; Unterthiner, T.; Dehghani, M.; Minderer, M.; Heigold, G.; Gelly, S.; et al. An image is worth 16× 16 words: Transformers for image recognition at scale. arXiv 2020, arXiv:2010.11929. [Google Scholar]
  41. Mohammadian, A.; Ghaderi, F. SiamixFormer: A fully-transformer Siamese network with temporal Fusion for accurate building detection and change detection in bi-temporal remote sensing images. Int. J. Remote Sens. 2023, 44, 3660–3678. [Google Scholar] [CrossRef]
  42. Liu, Z.; Lin, Y.; Cao, Y.; Hu, H.; Wei, Y.; Zhang, Z.; Lin, S.; Guo, B. Swin transformer: Hierarchical vision transformer using shifted windows. In Proceedings of the IEEE/CVF International Conference on Computer Vision, Montreal, BC, Canada, 11–17 October 2021; pp. 10012–10022. [Google Scholar]
  43. Zhang, C.; Wang, L.; Cheng, S.; Li, Y. SwinSUNet: Pure Transformer Network for Remote Sensing Image Change Detection. IEEE Trans. Geosci. Remote Sens. 2022, 60, 5224713. [Google Scholar] [CrossRef]
  44. Yan, T.; Wan, Z.; Zhang, P. Fully transformer network for change detection of remote sensing images. In Proceedings of the Asian Conference on Computer Vision, Macao, China, 4 December 2022; pp. 1691–1708. [Google Scholar]
  45. Wang, G.; Li, B.; Zhang, T.; Zhang, S. A network combining a transformer and a convolutional neural network for remote sensing image change detection. Remote Sens. 2022, 14, 2228. [Google Scholar] [CrossRef]
  46. Xu, X.; Li, J.; Chen, Z. TCIANet: Transformer-Based Context Information Aggregation Network for Remote Sensing Image Change Detection. IEEE J. Sel. Top. Appl. Earth Obs. Remote Sens. 2023, 16, 1951–1971. [Google Scholar] [CrossRef]
  47. Ding, L.; Xia, M.; Lin, H.; Hu, K. Multi-Level Attention Interactive Network for Cloud and Snow Detection Segmentation. Remote Sens. 2024, 16, 112. [Google Scholar] [CrossRef]
  48. Liu, M.; Chai, Z.; Deng, H.; Liu, R. A CNN-transformer network with multiscale context aggregation for fine-grained cropland change detection. IEEE J. Sel. Top. Appl. Earth Obs. Remote Sens. 2022, 15, 4297–4306. [Google Scholar] [CrossRef]
  49. Feng, Y.; Xu, H.; Jiang, J.; Liu, H.; Zheng, J. ICIF-Net: Intra-Scale Cross-Interaction and Inter-Scale Feature Fusion Network for Bitemporal Remote Sensing Images Change Detection. IEEE Trans. Geosci. Remote Sens. 2022, 60, 4410213. [Google Scholar] [CrossRef]
  50. Gao, F.; Fu, M.; Cao, J.; Dong, J.; Du, Q. Adaptive frequency enhancement network for remote sensing image semantic segmentation. IEEE Trans. Geosci. Remote. Sens. 2025, 63, 5619415. [Google Scholar] [CrossRef]
  51. Fu, J.; Yu, Y.; Wang, L. FSDENet: A Frequency and Spatial Domains based Detail Enhancement Network for Remote Sensing Semantic Segmentation. IEEE J. Sel. Top. Appl. Earth Obs. Remote. Sens. 2025, 18, 19378–19392. [Google Scholar] [CrossRef]
  52. Xie, Z.; Miao, S.; Jiang, Y.; Zhang, Z.; Yao, J.; Li, X.; Ghamisi, P. FSG-Net: Frequency-spatial synergistic gated network for high-resolution remote sensing change detection. IEEE Trans. Geosci. Remote Sens. 2026, 64, 4702115. [Google Scholar] [CrossRef]
  53. Bandara, W.G.C.; Patel, V.M. A transformer-based siamese network for change detection. In Proceedings of the IEEE International Geoscience and Remote Sensing Symposium, Kuala Lumpur, Malaysia, 17–22 July 2022; pp. 207–210. [Google Scholar] [CrossRef]
  54. Chen, Y.; Fan, H.; Xu, B.; Yan, Z.; Kalantidis, Y.; Rohrbach, M.; Shuicheng, Y.; Feng, J. Drop an octave: Reducing spatial redundancy in convolutional neural networks with octave convolution. In Proceedings of the IEEE/CVF International Conference on Computer Vision, Seoul, Republic of Korea, 27 October–2 November 2019; pp. 3435–3444. [Google Scholar]
  55. Woo, S.; Park, J.; Lee, J.; Kweon, I.S. Cbam: Convolutional block attention module. In Proceedings of the European Conference on Computer Vision (ECCV), Munich, Germany, 8–14 September 2018; pp. 3–19. [Google Scholar]
  56. Chen, H.; Wu, C.; Du, B.; Zhang, L. Change detection in multi-temporal vhr images based on deep siamese multi-scale convolutional networks. arXiv 2019, arXiv:1906.11479. [Google Scholar]
  57. He, K.; Zhang, X.; Ren, S.; Sun, J. Deep residual learning for image recognition. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, Las Vegas, NV, USA, 27–30 June 2016; pp. 770–778. [Google Scholar]
  58. Zhang, X.; Du, Y.; Zhou, W.; Zhang, K. Spatial-Frequency Decoupling Alignment Encoding for Remote Sensing Change Detection. Sensors 2026, 26, 1979. [Google Scholar] [CrossRef]
Figure 1. Three challenging RSCD scenarios from top to down have multiple adjacent objects, irregular objects, and fuzzy boundaries, respectively. The images from left to right are (1) input image T1, (2) input image T2, (3) ground truth (GT), (4) FARNet (ours), (5) SEIFNet [24], (6) STADE-CDNet [25]. These images are in the original RGB format of the LEVIR-CD dataset.
Figure 1. Three challenging RSCD scenarios from top to down have multiple adjacent objects, irregular objects, and fuzzy boundaries, respectively. The images from left to right are (1) input image T1, (2) input image T2, (3) ground truth (GT), (4) FARNet (ours), (5) SEIFNet [24], (6) STADE-CDNet [25]. These images are in the original RGB format of the LEVIR-CD dataset.
Sensors 26 03538 g001
Figure 2. Overall structure of the FARNet. First, in the feature extraction stage, bi-temporal multi-level features are extracted from the image pair using a weight-sharing Transformer encoder. Then, in the frequency-aware coarse localization stage, the bi-temporal multi-level features are fed into the FAM to generate a coarse localization map M. Next, in the detail-preserving refinement and fusion stage, the bi-temporal multi-level features together with the coarse localization map M are input into the RFM to obtain the refined feature map P 1 o u t . Finally, P 1 o u t is fed into the segmentation head to produce the change map, where white indicates changed areas and black indicates unchanged areas.
Figure 2. Overall structure of the FARNet. First, in the feature extraction stage, bi-temporal multi-level features are extracted from the image pair using a weight-sharing Transformer encoder. Then, in the frequency-aware coarse localization stage, the bi-temporal multi-level features are fed into the FAM to generate a coarse localization map M. Next, in the detail-preserving refinement and fusion stage, the bi-temporal multi-level features together with the coarse localization map M are input into the RFM to obtain the refined feature map P 1 o u t . Finally, P 1 o u t is fed into the segmentation head to produce the change map, where white indicates changed areas and black indicates unchanged areas.
Sensors 26 03538 g002
Figure 3. Architecture of octave convolution (Octave). Green arrows correspond to information updating, while red arrows facilitate information exchange between the two frequencies.
Figure 3. Architecture of octave convolution (Octave). Green arrows correspond to information updating, while red arrows facilitate information exchange between the two frequencies.
Sensors 26 03538 g003
Figure 4. Architecture of refinement fusion module (RFM).
Figure 4. Architecture of refinement fusion module (RFM).
Sensors 26 03538 g004
Figure 5. The visualization results achieved by different change detection methods on the WHU-CD test set. Subfigures (ad) illustrate the prediction results of all competing methods corresponding to different sample images. Columns (1)–(10) show the predicted change maps of FC-EF, FC-Siam-Diff, FC-Siam-Conc, BIT, ChangeFormer, DMINet, SEIFNet, STADE-CDNet, SDA-Encoding, and FARNet. For the color scheme, white represents true positive predictions, black represents true negatives, red refers to false positives, and green indicates false negatives.
Figure 5. The visualization results achieved by different change detection methods on the WHU-CD test set. Subfigures (ad) illustrate the prediction results of all competing methods corresponding to different sample images. Columns (1)–(10) show the predicted change maps of FC-EF, FC-Siam-Diff, FC-Siam-Conc, BIT, ChangeFormer, DMINet, SEIFNet, STADE-CDNet, SDA-Encoding, and FARNet. For the color scheme, white represents true positive predictions, black represents true negatives, red refers to false positives, and green indicates false negatives.
Sensors 26 03538 g005
Figure 6. The visualization results achieved by different change detection methods on the LEVIR-CD test set. Subfigures (ad) illustrate the prediction results of all competing methods corresponding to different sample images. Columns (1)–(10) show the predicted change maps of FC-EF, FC-Siam-Diff, FC-Siam-Conc, BIT, ChangeFormer, DMINet, SEIFNet, STADE-CDNet, SDA-Encoding, and FARNet. For the color scheme, white represents true positive predictions, black represents true negatives, red refers to false positives, and green indicates false negatives.
Figure 6. The visualization results achieved by different change detection methods on the LEVIR-CD test set. Subfigures (ad) illustrate the prediction results of all competing methods corresponding to different sample images. Columns (1)–(10) show the predicted change maps of FC-EF, FC-Siam-Diff, FC-Siam-Conc, BIT, ChangeFormer, DMINet, SEIFNet, STADE-CDNet, SDA-Encoding, and FARNet. For the color scheme, white represents true positive predictions, black represents true negatives, red refers to false positives, and green indicates false negatives.
Sensors 26 03538 g006
Figure 7. The visualization results achieved by different change detection methods on the LEVIR-CD+ test set. Subfigures (ad) illustrate the prediction results of all competing methods corresponding to different sample images. Columns (1)–(10) show the predicted change maps of FC-EF, FC-Siam-Diff, FC-Siam-Conc, BIT, ChangeFormer, DMINet, SEIFNet, STADE-CDNet, SDA-Encoding, and FARNet. For the color scheme, white represents true positive predictions, black represents true negatives, red refers to false positives, and green indicates false negatives.
Figure 7. The visualization results achieved by different change detection methods on the LEVIR-CD+ test set. Subfigures (ad) illustrate the prediction results of all competing methods corresponding to different sample images. Columns (1)–(10) show the predicted change maps of FC-EF, FC-Siam-Diff, FC-Siam-Conc, BIT, ChangeFormer, DMINet, SEIFNet, STADE-CDNet, SDA-Encoding, and FARNet. For the color scheme, white represents true positive predictions, black represents true negatives, red refers to false positives, and green indicates false negatives.
Sensors 26 03538 g007
Figure 8. An example visualization of the main modules in the network. (a) The original input T2 and the predicted CD map; (b) the input and output of FAM; (c) the input and output of RFM.
Figure 8. An example visualization of the main modules in the network. (a) The original input T2 and the predicted CD map; (b) the input and output of FAM; (c) the input and output of RFM.
Sensors 26 03538 g008
Figure 9. An example of visualizing the edge loss. (a) Input image T1. (b) Input image T2. (c) w/o edge loss. (d) With edge loss. (e) Ground truth.
Figure 9. An example of visualizing the edge loss. (a) Input image T1. (b) Input image T2. (c) w/o edge loss. (d) With edge loss. (e) Ground truth.
Sensors 26 03538 g009
Table 1. Generalization experiments conducted on the WHU-CD dataset (with the best results indicated in bold).
Table 1. Generalization experiments conducted on the WHU-CD dataset (with the best results indicated in bold).
MethodsOA (%)IoU (%)F1 (%)Pre (%)Rec (%)
FC-EF98.1958.3073.6687.2563.73
FC-Siam-Diff98.2567.3480.4872.2790.80
FC-Siam-Conc95.9145.3762.4249.0885.72
BIT98.7572.3983.9886.6481.48
ChangeFormer99.1179.1688.3792.2184.83
DMINet98.9779.6888.6993.8486.25
SEIFNet98.9076.0486.3987.0185.77
STADE-CDNet99.2080.7789.3694.0685.11
SDA-Encoding99.5989.8794.6796.6992.73
FARNet(ours)99.5990.0094.7497.5092.13
Table 2. Generalization experiments conducted on the LEVIR-CD dataset (with the best results indicated in bold).
Table 2. Generalization experiments conducted on the LEVIR-CD dataset (with the best results indicated in bold).
MethodsOA (%)IoU (%)F1 (%)Pre (%)Rec (%)
FC-EF98.3872.1983.8585.1082.63
FC-Siam-Diff98.9881.3889.7492.0987.50
FC-Siam-Conc98.6275.7286.1887.8384.59
BIT98.9280.6889.3189.2489.37
ChangeFormer99.0482.4890.4092.0588.80
DMINet99.0782.9990.7192.5289.95
SEIFNet99.0983.4090.9592.4989.46
STADE-CDNet98.9180.4489.1690.6587.72
SDA-Encoding99.2085.2992.0693.3490.82
FARNet (ours)99.2185.5292.1992.3292.07
Table 3. Generalization experiments conducted on the LEVIR-CD+ dataset (with the best results indicated in bold).
Table 3. Generalization experiments conducted on the LEVIR-CD+ dataset (with the best results indicated in bold).
MethodsOA (%)IoU (%)F1 (%)Pre (%)Rec (%)
FC-EF97.6356.0571.8369.7574.05
FC-Siam-Diff98.6170.8382.9383.1882.68
FC-Siam-Conc98.1763.8977.9776.3879.63
BIT98.7772.9984.3887.5781.42
ChangeFormer98.6170.7482.8683.3082.44
DMINet98.6871.1983.1786.2180.33
SEIFNet98.5469.2281.8182.8680.79
STADE-CDNet98.5371.0283.0678.0788.73
SDA-Encoding98.8474.9785.7085.8185.58
FARNet(ours)98.8775.6586.1386.1286.15
Table 4. Ablation study of different modules (with the best results indicated in bold). ✓ indicates presence, × indicates absence.
Table 4. Ablation study of different modules (with the best results indicated in bold). ✓ indicates presence, × indicates absence.
FAMRFMLEVIR-CDWHU-CD
OA (%)IoU (%)F1 (%)OA (%)IoU (%)F1 (%)
×99.1884.8391.7999.5789.4994.46
×99.1885.0591.9299.5789.5494.48
99.2185.5292.1999.5990.0094.74
Table 5. Multiple α values were used for performance comparison on the LEVIR-CD dataset (with the best results indicated in bold).
Table 5. Multiple α values were used for performance comparison on the LEVIR-CD dataset (with the best results indicated in bold).
α LEVIR-CD
OA (%)IoU (%)F1 (%)Pre (%)Rec (%)
1.099.1884.9891.8892.7791.01
0.999.2185.5292.1992.3292.07
0.899.1885.0191.9092.9590.86
0.799.1884.9891.8892.5691.21
0.699.1584.5791.6491.8991.39
0.599.1784.8491.8092.6690.95
Table 6. The experimental results of different challenging conditions on the LEVIR-CD dataset (with the best results indicated in bold).
Table 6. The experimental results of different challenging conditions on the LEVIR-CD dataset (with the best results indicated in bold).
OperationLEVIR-CD
OA (%)IoU (%)F1 (%)Pre (%)Rec (%)
Noise corruption99.1584.4891.5892.6390.56
Cloud occlusion99.1283.9391.2791.8290.72
-99.2185.5292.1992.3292.07
Table 7. Complexity comparison of different methods.
Table 7. Complexity comparison of different methods.
MethodsPara. (M)FLOPs (G)
FC-EF1.353.59
FC-Siam-diff1.354.74
FC-Siam-conc1.555.34
BIT12.4010.87
DMINet6.2414.55
STADE-CDNet11.914.3
SEIFNet27.918.37
SChanger2.3717.91
CASP14.559.19
SDA-Encoding45.5744.80
FARNet (Ours)55.9241.84
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content.

Share and Cite

MDPI and ACS Style

Zhang, X.; Du, Y.; Zhang, Z.; Zhang, K. Frequency-Aware Refinement Network with Multi-Scale Fusion for Remote Sensing Change Detection. Sensors 2026, 26, 3538. https://doi.org/10.3390/s26113538

AMA Style

Zhang X, Du Y, Zhang Z, Zhang K. Frequency-Aware Refinement Network with Multi-Scale Fusion for Remote Sensing Change Detection. Sensors. 2026; 26(11):3538. https://doi.org/10.3390/s26113538

Chicago/Turabian Style

Zhang, Xu, Yue Du, Zeyu Zhang, and Kaihua Zhang. 2026. "Frequency-Aware Refinement Network with Multi-Scale Fusion for Remote Sensing Change Detection" Sensors 26, no. 11: 3538. https://doi.org/10.3390/s26113538

APA Style

Zhang, X., Du, Y., Zhang, Z., & Zhang, K. (2026). Frequency-Aware Refinement Network with Multi-Scale Fusion for Remote Sensing Change Detection. Sensors, 26(11), 3538. https://doi.org/10.3390/s26113538

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop