diff --git a/modules/deeplearning/cloud_opd_srcnn.py b/modules/deeplearning/cloud_opd_srcnn.py index be1da1714849f728628f5199e130809fc462f983..9bc0c6f09f217f07ea3d085e2617944e792616ba 100644 --- a/modules/deeplearning/cloud_opd_srcnn.py +++ b/modules/deeplearning/cloud_opd_srcnn.py @@ -73,8 +73,8 @@ if KERNEL_SIZE == 3: slc_y = slice(2, N_Y*128 + 4) #slc_x_2 = slice(1, N_X*128 + 6, 2) #slc_y_2 = slice(1, N_Y*128 + 6, 2) - slc_x_2 = slice(1, int((N_X*128)/2) + 1) - slc_y_2 = slice(1, int((N_Y*128)/2) + 1) + slc_x_2 = slice(1, int((N_X*128)/2) + 4) + slc_y_2 = slice(1, int((N_Y*128)/2) + 4) x_2 = np.arange(int((N_X*128)/2) + 3) y_2 = np.arange(int((N_Y*128)/2) + 3) t = np.arange(0, int((N_X*128)/2) + 3, 0.5)