diff options
| -rw-r--r-- | test.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -36,7 +36,7 @@ if not(args.T == 'L' or args.T =='G'): print('Invalid input type: {} (Must be L(Low-resolution) or G(Ground-truth))'.format(args.T)) exit(1) -def process_dir(v, scene_name): +def process_dir(v, scene_name=None): if scene_name is None: scene_name = v.split('/')[-1] os.mkdir('./results/{}L/L/{}/'.format(args.L, scene_name)) |
