Add pipeline tag, link to code (#1)
Browse files- Add pipeline tag, link to code (b9488ac3eae341d766ade77e0f1a999c53d0ed2f)
Co-authored-by: Niels Rogge <[email protected]>
README.md
CHANGED
@@ -1,3 +1,49 @@
|
|
1 |
-
---
|
2 |
-
license: apache-2.0
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
pipeline_tag: image-segmentation
|
4 |
+
---
|
5 |
+
|
6 |
+
# CFNet: Optimizing Remote Sensing 🗺️ Change Detection 🕵 through Content-Aware Enhancement
|
7 |
+
Official repository for the paper ["CFNet: Optimizing Remote Sensing Change Detection through Content-Aware Enhancement"](https://arxiv.org/pdf/2503.08505).
|
8 |
+
|
9 |
+
[[🤗Datasets](https://huggingface.co/datasets/wifibk/CFNet_Datasets/tree/main)] [[🤗Checkpoints](https://huggingface.co/wifibk/CFNet/tree/main)]
|
10 |
+
|
11 |
+
## 🐣 News
|
12 |
+
- **[2025.3.11]** We release the code and checkpoints for CFNet 🚀
|
13 |
+
- **[2025.3.11]** We release the [arixv paper](https://arxiv.org/pdf/2503.08505) 🚀
|
14 |
+
|
15 |
+
## 🤔 Addressing Style Variations in Change Detection
|
16 |
+
Change detection plays a crucial role in remote sensing, enabling the identification and analysis of temporal changes in the same geographical area. However, bi-temporal remote sensing images often exhibit significant style variations due to differences in acquisition conditions. These unpredictable variations pose a challenge to deep neural networks (DNNs), affecting their ability to accurately detect changes.
|
17 |
+
|
18 |
+
<p align="center">
|
19 |
+
<img src="figures/Content.png" width="90%"> <br>
|
20 |
+
</p>
|
21 |
+
|
22 |
+
To address the problem above, we propose **Content Focuser Network (CFNet)**. CFNet achieves state-of-the-art performance on three well-known change detection datasets: **CLCD (F1: 81.41%, IoU: 68.65%)**, **LEVIR-CD (F1: 92.18%, IoU: 85.49%)**, and **SYSU-CD (F1: 82.89%, IoU: 70.78%)**. 🚀
|
23 |
+
|
24 |
+
<p align="center">
|
25 |
+
<img src="figures/Architecture.png" width="90%"> <br>
|
26 |
+
</p>
|
27 |
+
|
28 |
+
The main contributions of our work:
|
29 |
+
- **Content-Aware strategy**, a novel content-based constraint learning strategy that enhances the model's focus on intrinsic content features while **reducing the impact of style variations**, thereby improving the accuracy and robustness of bi-temporal change detection in remote sensing imagery.
|
30 |
+
- **Focuser module**, a novel mechanism that dynamically reweights features to focus on both changed and unchanged areas, leveraging their **mutual constraints** to enhance parameter regularization and improve model accuracy.
|
31 |
+
|
32 |
+
**The visualization results on the CLCD dataset** demonstrate the great performance of CFNet. For better readability, we present only the results from CLCD here. For a comprehensive view, including visualizations on all three datasets, please refer to our paper.
|
33 |
+
<p align="center">
|
34 |
+
<img src="figures/cl_vis.png" width="90%"> <br>
|
35 |
+
</p>
|
36 |
+
|
37 |
+
**To further illustrate the effectiveness of the Content-Aware strategy in extracting content features**, we visualize the largest-scale feature maps output by the Content Decoder. Since the LEVIR-CD dataset primarily focuses on building changes, the content features predominantly represent structural information related to buildings).
|
38 |
+
|
39 |
+
<p align="center">
|
40 |
+
<img src="figures/content_res.png" width="90%"> <br>
|
41 |
+
</p>
|
42 |
+
|
43 |
+
## 🏁 Get Start
|
44 |
+
|
45 |
+
Code: https://github.com/wifiBlack/CFNet
|
46 |
+
|
47 |
+
|
48 |
+
### Installation
|
49 |
+
...
|