From 485d24dff1be573dad6f4547050cdfc5e98dd62d Mon Sep 17 00:00:00 2001
From: tomrink <rink@ssec.wisc.edu>
Date: Fri, 2 Sep 2022 10:50:04 -0500
Subject: [PATCH] snapshot...

---
 modules/deeplearning/srcnn.py | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/modules/deeplearning/srcnn.py b/modules/deeplearning/srcnn.py
index cf02a000..35884b5b 100644
--- a/modules/deeplearning/srcnn.py
+++ b/modules/deeplearning/srcnn.py
@@ -665,6 +665,10 @@ def run_evaluate_static(in_file, out_file, param='temp_11_0um_nom', ckpt_dir='/U
     nda = nda[:, data_idx, 2:133:2, 2:133:2]
     nda = np.expand_dims(nda, axis=3)
 
+    nda = nda[:, data_idx, 3:131:2, 3:131:2]
+    nda = resample(x_64, y_64, nda, t, s)
+    nda = np.expand_dims(nda, axis=3)
+
     nn = SRCNN()
     out_sr = nn.run_evaluate(nda, param, ckpt_dir)
     if out_file is not None:
-- 
GitLab