From 49d5c591a42c02d3510bd4aab7b25c098a0b86fa Mon Sep 17 00:00:00 2001 From: Yuki-Kokomi Date: Wed, 6 Nov 2024 20:35:42 +0800 Subject: [PATCH] fix run_model.py --- run_model.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run_model.py b/run_model.py index 5f1a8d0..7b0e61f 100644 --- a/run_model.py +++ b/run_model.py @@ -159,8 +159,8 @@ import traceback errors = [] for index in range(len(input_types)): cur_type = input_types[index] - src = src_base + cur_type - out = out_base + cur_type + src = os.path.join(src_base, cur_type) + out = os.path.join(out_base, cur_type) ensure_dir(out) out_paths = sorted(glob.glob(os.path.join(src, "*.{}".format("jpg")))) if cur_type == "Orthographic" :