diff options
| -rw-r--r-- | test.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -39,7 +39,7 @@ if not(args.T == 'L' or args.T =='G'): 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)) + os.makedirs('./results/{}L/L/{}/'.format(args.L, scene_name)) dir_frames = glob.glob(v + '/*.png') dir_frames.sort() |
