用最近邻 / 双线性 / 三次卷积改变栅格分辨率,输出重采样后的 GeoTIFF 与统计。Resample raster resolution with nearest / bilinear / cubic convolution and emit a GeoTIFF plus statistics.
Coding
geoskill-super-resolution-dl
Try it基于 SRCNN(Dong 2014)卷积神经网络的 2x/3x/4x 影像超分辨率,在 CUDA GPU 上训练与推理,输出高分辨率栅格与 PSNR/SSIM 评估
What it does
基于 SRCNN(Dong 2014)卷积神经网络的 2x/3x/4x 影像超分辨率,在 CUDA GPU 上训练与推理,输出高分辨率栅格与 PSNR/SSIM 评估
The skill document
深度学习超分辨率 | Deep Learning Super-Resolution
Upscales low-resolution remote sensing imagery to high resolution while enhancing detail, outputting the super-resolved raster together with quality metrics (PSNR/SSIM).
Core model: SRCNN (Super-Resolution Convolutional Neural Network, Dong et al. 2014, ECCV/TPAMI) — a 3-layer fully convolutional network (9×9 / 5×5 / 5×5 kernels, 1→64→32→1 channels, ReLU) that takes the bicubic-upsampled result as input and learns the HR − bicubic residual. The network architecture, training objective (pixel-wise MSE) and inference pipeline match the original SRCNN.
All training/inference runs on a CUDA GPU (torch >= 2.x). Pre-trained weights srcnn_weights.pt ship with the skill (trained on synthetic ground truth); if the weights are missing, they are automatically trained on the GPU at first run and cached to disk.
Synthetic mode runs the self-consistent "high-resolution ground truth → downsampling → super-resolution" experiment, directly quantifying restoration quality and comparing against the bicubic baseline with --psnr_bicubic_only.
Dependencies / 依赖
pip install numpy rasterio scipy torch # torch requires CUDA build for GPU inference
Usage / 使用方法
Example 1 (synthetic data, offline)
python geoskill-super-resolution-dl.py --bbox 116.0 39.0 117.0 40.0 --synthetic --output-dir ./out
Example 2: 3x upscaling of a real low-resolution image
python geoskill-super-resolution-dl.py --input low.tif --scale 3 --amount 0.7 --output-dir ./out
Output / 输出
| File | Format | Description |
|---|---|---|
super_resolved.tif | GeoTIFF | Super-resolved high-resolution raster |
quality_metrics.json | JSON | PSNR/SSIM and comparison against the pure bicubic baseline |
output-manifest.json | JSON | Run manifest (input/output/QA/exit code) |
Data Source / 数据源 / Source
A local single-band GeoTIFF, or --synthetic (downsample the high-resolution ground truth to obtain the low-resolution input; the ground truth is retained for evaluation).
Privacy / 隐私声明 / Privacy
- Runs offline by default;
--syntheticmode requires no network at all. - All processing is done locally; no user data is uploaded.
License / License
MIT
name: geoskill-super-resolution-dl description: '基于 SRCNN(Dong 2014)卷积神经网络的 2x/3x/4x 影像超分辨率,在 CUDA GPU 上训练与推理,输出高分辨率栅格与 PSNR/SSIM 评估'
深度学习超分辨率 | Deep Learning Super-Resolution
把低分辨率遥感影像放大到高分辨率并增强细节,输出超分栅格与质量评估指标(PSNR/SSIM)。
核心模型:SRCNN(Super-Resolution Convolutional Neural Network, Dong et al. 2014, ECCV/TPAMI)
—— 3 层全卷积网络(9×9 / 5×5 / 5×5 核,1→64→32→1 通道,ReLU),以双三次上采样结果为输入、
学习 HR - bicubic 残差;网络结构、训练目标(pixel-wise MSE)与推理流程与原始 SRCNN 一致。
所有训练/推理在 CUDA GPU 上执行(torch >= 2.x);随 skill 附带预训练权重
srcnn_weights.pt(在合成真值上训练得到);若权重缺失则在首次运行时自动用 GPU
训练并落盘缓存。
合成模式执行"高分辨率真值 -> 降采样 -> 超分"自洽实验,可直接量化恢复质量,并与
--psnr_bicubic_only 双三次基线对比。
依赖
pip install numpy rasterio scipy torch # torch 需 CUDA 版以使用 GPU 推理
使用方法
示例 1(合成数据,离线)
python geoskill-super-resolution-dl.py --bbox 116.0 39.0 117.0 40.0 --synthetic --output-dir ./out
示例 2:真实低分影像 3 倍放大
python geoskill-super-resolution-dl.py --input low.tif --scale 3 --amount 0.7 --output-dir ./out
输出
| 文件 | 格式 | 说明 |
|---|---|---|
super_resolved.tif | GeoTIFF | 超分后的高分辨率栅格 |
quality_metrics.json | JSON | PSNR/SSIM 及与纯双三次基线的对比 |
output-manifest.json | JSON | 运行清单(输入/输出/QA/退出码) |
数据源 / Source
本地单波段 GeoTIFF,或 --synthetic(高分辨率真值降采样得到低分辨率输入,真值留存用于评估)。
隐私声明 / Privacy
- 默认离线运行,
--synthetic模式完全无网络。 - 所有处理在本地完成,不上传任何用户数据。
License
MIT
Related skills
Upscale images via a cloud super-resolution API and get back a hosted enhanced image URL.
LSTM 时序预测网络(torch+CUDA,默认) + 经典线性/多项式/AR(p) 解释基线:多步外推 + 留出 MAE/RMSE 验证 + 逐像元栅格输出
Siamese 全卷积网络(FC-Siam-diff 风格)双时相变化检测:GPU 训练/推理,输出变化概率、二值变化图与变化图斑
小型 U-Net 二值语义分割 (torch+CUDA) 预标注 + 主动学习不确定性选样,输出 COCO/GeoJSON 标注与不确定性栅格
评估多光谱影像辐射质量(SNR/条纹/坏线)与几何质量(云量/清晰度),输出质量评分 JSON + HTML 报告。Assess radiometric (SNR, striping, dead lines) and geometric (cloud, sharpness) quality of multispectral imagery; outputs a scored JSON and HTML report.