diff --git a/odm_preprocess.py b/odm_preprocess.py index 702a600..a5b5871 100644 --- a/odm_preprocess.py +++ b/odm_preprocess.py @@ -296,7 +296,7 @@ class ImagePreprocessor: try: self.extract_gps() self.cluster() - self.filter_isolated_points() + # self.filter_isolated_points() grid_points, translations = self.divide_grids() self.copy_images(grid_points) self.logger.info("预处理任务完成") diff --git a/odm_preprocess_fast.py b/odm_preprocess_fast.py index 519854a..128754a 100644 --- a/odm_preprocess_fast.py +++ b/odm_preprocess_fast.py @@ -296,7 +296,7 @@ class ImagePreprocessor: try: self.extract_gps() self.cluster() - self.filter_isolated_points() + # self.filter_isolated_points() grid_points, translations = self.divide_grids() # self.copy_images(grid_points) # self.logger.info("预处理任务完成")