Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,41 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
````
|
| 2 |
+
# AERIS v5.0: Cloud Detection in Satellite Imagery
|
| 3 |
+
|
| 4 |
+
Automated cloud detection system for Landsat 8 satellite imagery using deep learning with uncertainty quantification.
|
| 5 |
+
|
| 6 |
+
## Overview
|
| 7 |
+
AERIS (Automated Environmental Remote Imaging System) detects clouds in 4-channel satellite images using a U-Net architecture with ResNet34 encoder. The model includes Monte Carlo Dropout for uncertainty estimation, making predictions reliable and trustworthy.
|
| 8 |
+
|
| 9 |
+
## Model Architecture
|
| 10 |
+
- **Base:** U-Net with ResNet34 encoder
|
| 11 |
+
- **Input:** 4-channel images (256×256) - Red, Green, Blue, Near-Infrared
|
| 12 |
+
- **Output:** Binary cloud segmentation mask
|
| 13 |
+
- **Uncertainty:** MC Dropout with 30 iterations
|
| 14 |
+
- **Framework:** PyTorch + segmentation-models-pytorch
|
| 15 |
+
|
| 16 |
+
## Performance Metrics
|
| 17 |
+
| Metric | Score |
|
| 18 |
+
|--------|-------|
|
| 19 |
+
| Validation IoU | 92.20% |
|
| 20 |
+
| Dice Coefficient | 94.28% |
|
| 21 |
+
| Precision | 92.15% |
|
| 22 |
+
| Recall | 96.73% |
|
| 23 |
+
| F1 Score | 94.28% |
|
| 24 |
+
| ECE (Calibration) | 0.70% |
|
| 25 |
+
|
| 26 |
+
## Training Details
|
| 27 |
+
- **Dataset:** 38-Cloud (16,800 training patches)
|
| 28 |
+
- **Loss:** Combined Dice + Binary Cross-Entropy
|
| 29 |
+
- **Optimizer:** AdamW (lr=1e-4)
|
| 30 |
+
- **Epochs:** 30
|
| 31 |
+
- **Hardware:** NVIDIA RTX 4060
|
| 32 |
+
|
| 33 |
+
## Use Cases
|
| 34 |
+
- ✅ Satellite image preprocessing
|
| 35 |
+
- ✅ Atmospheric correction pipelines
|
| 36 |
+
- ✅ Weather analysis
|
| 37 |
+
- ✅ Remote sensing research
|
| 38 |
+
- ✅ Cloud cover estimation
|
| 39 |
+
|
| 40 |
+
## Quick Start
|
| 41 |
+
```
|