File size: 9,629 Bytes
0467378 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 |
from mmseg.apis import init_model
from typing import List
from glob import glob
from cloud_adapter.cloud_adapter_dinov2 import CloudAdapterDinoVisionTransformer
import numpy as np
from PIL import Image
from mmseg.models.segmentors.encoder_decoder import EncoderDecoder
import gradio as gr
import torch
import os
class CloudAdapterGradio:
def __init__(self, config_path=None, checkpoint_path=None, device="cpu", example_inputs=None, num_classes=2, palette=None):
self.config_path = config_path
self.checkpoint_path = checkpoint_path
self.device = device
self.model: EncoderDecoder = init_model(
self.config_path, self.checkpoint_path, device=self.device)
self.model.eval()
self.example_inputs = example_inputs
self.img_size = 256 if num_classes == 2 else 512
self.palette = palette
self.legend = self.html_legend(num_classes=num_classes)
self.name_mapping = {
"KappaMask": "kappamask",
"CDNetv1": "cdnetv1",
"CDNetv2": "cdnetv2",
"HRCloudNet": "hrcloudnet",
"MCDNet": "mcdnet",
"SCNN": "scnn",
"DBNet": "dbnet",
"UNetMobv2": "unetmobv2",
"Cloud-Adapter": "cloud-adapter",
}
self.create_ui()
def html_legend(self, num_classes=2):
if num_classes == 2:
return """
<div style="margin-top: 10px; text-align: left; display: flex; align-items: center; gap: 20px;justify-content: center;">
<div style="display: flex; align-items: center;">
<div style="width: 20px; height: 20px; background-color: rgb(79, 253, 199); margin-right: 10px; "></div>
<span>Clear</span>
</div>
<div style="display: flex; align-items: center;">
<div style="width: 20px; height: 20px; background-color: rgb(77, 2, 115); margin-right: 10px; "></div>
<span>Cloud</span>
</div>
</div>
"""
return """
<div style="margin-top: 10px; text-align: left; display: flex; align-items: center; gap: 20px;justify-content: center;">
<div style="display: flex; align-items: center;">
<div style="width: 20px; height: 20px; background-color: rgb(79, 253, 199); margin-right: 10px; "></div>
<span>Clear Sky</span>
</div>
<div style="display: flex; align-items: center;">
<div style="width: 20px; height: 20px; background-color: rgb(77, 2, 115); margin-right: 10px; "></div>
<span>Thick Cloud</span>
</div>
<div style="display: flex; align-items: center;">
<div style="width: 20px; height: 20px; background-color: rgb(251, 255, 41); margin-right: 10px; "></div>
<span>Thin Cloud</span>
</div>
<div style="display: flex; align-items: center;">
<div style="width: 20px; height: 20px; background-color: rgb(221, 53, 223); margin-right: 10px; "></div>
<span>Cloud Shadow</span>
</div>
</div>
"""
def create_ui(self):
with gr.Row():
# 左侧:输入图片和按钮
with gr.Column(scale=1): # 左侧列
in_image = gr.Image(
label='Input Image',
sources='upload',
elem_classes='input_image',
interactive=True,
type="pil",
)
with gr.Row():
run_button = gr.Button(
'Run',
variant="primary",
)
# 示例输入列表
gr.Examples(
examples=self.example_inputs,
inputs=in_image,
label="Example Inputs"
)
# 右侧:输出图片
with gr.Column(scale=1): # 右侧列
with gr.Column():
# 输出图片
out_image = gr.Image(
label='Output Image',
elem_classes='output_image',
interactive=False
)
# 图例
legend = gr.HTML(
value=self.legend,
elem_classes="output_legend",
)
# 按钮点击逻辑:触发图像转换
run_button.click(
self.inference,
inputs=in_image,
outputs=out_image,
)
@torch.no_grad()
def inference(self, image: Image.Image) -> Image.Image:
return self.cloud_adapter_forward(image)
@torch.no_grad()
def cloud_adapter_forward(self, image: Image.Image) -> Image.Image:
"""
Cloud Adapter Inference
"""
ori_size = image.size
image = image.resize((self.img_size, self.img_size),
resample=Image.Resampling.BILINEAR)
image = np.array(image)
# print(image.shape)
image = (image - np.min(image)) / (np.max(image)-np.min(image))
image = torch.from_numpy(image).unsqueeze(0).to(self.device)
image = image.permute(0, 3, 1, 2).float()
outs = self.model.predict(image)
pred_mask = outs[0].pred_sem_seg.data.cpu().numpy().astype(np.uint8)
im = Image.fromarray(pred_mask[0]).convert("P")
im.putpalette(self.palette)
del image
del outs
if torch.cuda.is_available():
torch.cuda.empty_cache()
return im.resize(ori_size, resample=Image.Resampling.BILINEAR)
def get_palette(dataset_name: str) -> List[int]:
if dataset_name in ["cloudsen12_high_l1c", "cloudsen12_high_l2a"]:
return [79, 253, 199, 77, 2, 115, 251, 255, 41, 221, 53, 223]
if dataset_name == "l8_biome":
return [79, 253, 199, 221, 53, 223, 251, 255, 41, 77, 2, 115]
if dataset_name in ["gf12ms_whu_gf1", "gf12ms_whu_gf2", "hrc_whu"]:
return [79, 253, 199, 77, 2, 115]
raise Exception("dataset_name not supported")
if __name__ == '__main__':
title = 'Cloud Segmentation for Remote Sensing Images'
custom_css = """
h1 {
text-align: center;
font-size: 24px;
font-weight: bold;
margin-bottom: 20px;
}
"""
hrc_whu_examples = glob("example_inputs/hrc_whu/*")
gf1_examples = glob("example_inputs/gf1/*")
gf2_examples = glob("example_inputs/gf2/*")
l1c_examples = glob("example_inputs/l1c/*")
l2a_examples = glob("example_inputs/l2a/*")
l8_examples = glob("example_inputs/l8/*")
device = "cuda:0" if torch.cuda.is_available() else "cpu"
with gr.Blocks(analytics_enabled=False, title=title,css=custom_css) as demo:
gr.Markdown(f'# {title}')
with gr.Tabs():
with gr.TabItem('Google Earth'):
CloudAdapterGradio(
config_path="cloud-adapter-configs/binary_classes_256x256.py",
checkpoint_path="checkpoints/cloud-adapter/hrc_whu_full_weight.pth",
device=device,
example_inputs=hrc_whu_examples,
num_classes=2,
palette=get_palette("hrc_whu"),
)
with gr.TabItem('Gaofen-1'):
CloudAdapterGradio(
config_path="cloud-adapter-configs/binary_classes_256x256.py",
checkpoint_path="checkpoints/cloud-adapter/gf1_full_weight.pth",
device=device,
example_inputs=gf1_examples,
num_classes=2,
palette=get_palette("gf12ms_whu_gf1"),
)
with gr.TabItem('Gaofen-2'):
CloudAdapterGradio(
config_path="cloud-adapter-configs/binary_classes_256x256.py",
checkpoint_path="checkpoints/cloud-adapter/gf2_full_weight.pth",
device=device,
example_inputs=gf2_examples,
num_classes=2,
palette=get_palette("gf12ms_whu_gf2"),
)
with gr.TabItem('Sentinel-2 (L1C)'):
CloudAdapterGradio(
config_path="cloud-adapter-configs/multi_classes_512x512.py",
checkpoint_path="checkpoints/cloud-adapter/l1c_full_weight.pth",
device=device,
example_inputs=l1c_examples,
num_classes=4,
palette=get_palette("cloudsen12_high_l1c"),
)
with gr.TabItem('Sentinel-2 (L2A)'):
CloudAdapterGradio(
config_path="cloud-adapter-configs/multi_classes_512x512.py",
checkpoint_path="checkpoints/cloud-adapter/l2a_full_weight.pth",
device=device,
example_inputs=l2a_examples,
num_classes=4,
palette=get_palette("cloudsen12_high_l2a"),
)
with gr.TabItem('Landsat-8'):
CloudAdapterGradio(
config_path="cloud-adapter-configs/multi_classes_512x512.py",
checkpoint_path="checkpoints/cloud-adapter/l8_full_weight.pth",
device=device,
example_inputs=l8_examples,
num_classes=4,
palette=get_palette("l8_biome"),
)
demo.launch(share=True, debug=True)
|