Skip to content
Snippets Groups Projects
Commit 43886f8a authored by tomrink's avatar tomrink
Browse files

snapshot...

parent 9bf1ddcd
No related branches found
No related tags found
No related merge requests found
...@@ -137,6 +137,20 @@ def upsample(tmp): ...@@ -137,6 +137,20 @@ def upsample(tmp):
return tmp return tmp
def upsample_nearest(tmp):
bsize = tmp.shape[0]
tmp_2 = tmp[:, slc_y_2, slc_x_2]
up = np.zeros(bsize, t.size, s.size)
for k in range(bsize):
for j in range(t.size/2):
for i in range(s.size/2):
up[k, j, i] = tmp_2[k, j, i]
up[k, j, i+1] = tmp_2[k, j, i]
up[k, j+1, i] = tmp_2[k, j, i]
up[k, j+1, i+1] = tmp_2[k, j, i]
return up
class SRCNN: class SRCNN:
def __init__(self): def __init__(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment