File size: 920 Bytes
ababf8e
6c08128
 
ababf8e
6c08128
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ababf8e
 
 
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
import benchmark
import opensr_test
import matplotlib.pyplot as plt
from superimage.utils import create_superimage_model, run_superimage


# Load the model
model = create_superimage_model(device="cuda")

# Load the dataset
dataset = opensr_test.load("naip")
lr_dataset, hr_dataset = dataset["L2A"], dataset["HRharm"]

# Run the model
results = run_superimage(
    model=model,
    lr=lr_dataset[7][:,0:64, 0:64],
    hr=hr_dataset[7][:,0:256, 0:256],
    device="cuda"
)

# Display the results
fig, ax = plt.subplots(1, 3, figsize=(10, 5))
ax[0].imshow(results["lr"].transpose(1, 2, 0)/3000)
ax[0].set_title("LR")
ax[0].axis("off")
ax[1].imshow(results["sr"].transpose(1, 2, 0)/3000)
ax[1].set_title("SR")
ax[1].axis("off")
ax[2].imshow(results["hr"].transpose(1, 2, 0) / 3000)
ax[2].set_title("HR")
plt.show()

# Run the experiment
# benchmark.create_geotiff(model, run_superimage, "all", "superimage/", device="cuda")