diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-11-18 22:10:02 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-11-18 22:10:02 +0100 |
| commit | ca9029b7ddce65880ee65ae465e9a523206323d2 (patch) | |
| tree | 3555e658c7ba97ee674bf41a795ba14963c664ca /test.py | |
| parent | 952ba41613ac748c8a1e8192e15087cdeea17e41 (diff) | |
filenames
Diffstat (limited to 'test.py')
| -rw-r--r-- | test.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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_{:03d}.png'.format(args.L, scene_name, i+1)) def G(x, is_train): # shape of x: [B,T_in,H,W,C] |
