删除进度条

This commit is contained in:
weixin_46229132 2025-02-08 15:28:41 +08:00
parent 5ac93ebdd2
commit 59d6ef44a8

View File

@ -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)