diff --git a/modules/deeplearning/srcnn.py b/modules/deeplearning/srcnn.py
index 7df149b0fefd70bca2770c8d1f00630368a791cb..b5f6e704446959e35d0ffc173ead882a992df0d9 100644
--- a/modules/deeplearning/srcnn.py
+++ b/modules/deeplearning/srcnn.py
@@ -1,7 +1,7 @@
 import glob
 import tensorflow as tf
 from util.setup import logdir, modeldir, cachepath, now, ancillary_path
-from util.util import EarlyStop, normalize, denormalize, resample, get_grid_values_all
+from util.util import EarlyStop, normalize, denormalize, resample, resample_one, get_grid_values_all
 import os, datetime
 import numpy as np
 import pickle
@@ -677,7 +677,7 @@ def run_evaluate_static_new(in_file, out_file, ckpt_dir):
     x_up = np.arange(0, lenx, 0.5)
     y_up = np.arange(0, leny, 0.5)
 
-    grd = resample(x, y, grd, x_up, y_up)
+    grd = resample_one(y, x, grd, y_up, x_up)
 
     nn = SRCNN()
     out_sr = nn.run_evaluate(grd, data_param, ckpt_dir)