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)