fix run_model.py

This commit is contained in:
Yuki-Kokomi
2024-11-06 20:35:42 +08:00
committed by GitHub
parent ea3ea7e480
commit 49d5c591a4

View File

@@ -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" :