From 59d6ef44a88fe932e6e81d89ffadfd88c329f032 Mon Sep 17 00:00:00 2001 From: weixin_46229132 Date: Sat, 8 Feb 2025 15:28:41 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E8=BF=9B=E5=BA=A6=E6=9D=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- odm_preprocess.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/odm_preprocess.py b/odm_preprocess.py index cc86c04..094e00a 100644 --- a/odm_preprocess.py +++ b/odm_preprocess.py @@ -235,7 +235,7 @@ class ImagePreprocessor: os.makedirs(output_dir, exist_ok=True) - for point in tqdm(points, desc=f"复制网格 ({grid_id[0]},{grid_id[1]}) 的图像"): + for point in points: src = os.path.join(self.config.image_dir, point["file"]) dst = os.path.join(output_dir, point["file"]) shutil.copy(src, dst)