summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-11-18 22:16:19 +0100
committerJules Laplace <julescarbon@gmail.com>2018-11-18 22:16:19 +0100
commit1a48ac95160230049baf8e2e2de3305566ef68e8 (patch)
tree4bd7f9389693cbe54004e8e1c8c016211bc8f20f
parentca9029b7ddce65880ee65ae465e9a523206323d2 (diff)
03d
-rw-r--r--test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test.py b/test.py
index bb181ed..62d108a 100644
--- a/test.py
+++ b/test.py
@@ -57,7 +57,7 @@ def process_dir(v):
out_H = sess.run(GH, feed_dict={L: in_L, is_train: False})
out_H = np.clip(out_H, 0, 1)
- Image.fromarray(np.around(out_H[0,0]*255).astype(np.uint8)).save('./results/{}L/L/{}/frame_{:03d}.png'.format(args.L, scene_name, i+1))
+ Image.fromarray(np.around(out_H[0,0]*255).astype(np.uint8)).save('./results/{}L/L/{}/frame_{:05d}.png'.format(args.L, scene_name, i+1))
def G(x, is_train):
# shape of x: [B,T_in,H,W,C]