diff --git a/cars/pipelines/default/default_pipeline.py b/cars/pipelines/default/default_pipeline.py index 8f474398..222d5974 100644 --- a/cars/pipelines/default/default_pipeline.py +++ b/cars/pipelines/default/default_pipeline.py @@ -977,6 +977,7 @@ def sensor_to_depth_maps(self): # noqa: C901 self.pairs[pair_key]["sensor_image_right"], self.pairs[pair_key]["grid_left"], self.pairs[pair_key]["grid_right"], + orchestrator=self.cars_orchestrator, pair_folder=os.path.join( self.dump_dir, "resampling", "initial", pair_key ), @@ -1107,16 +1108,18 @@ def sensor_to_depth_maps(self): # noqa: C901 self.pairs[pair_key]["sensor_image_right"], self.pairs[pair_key]["corrected_grid_left"], self.pairs[pair_key]["corrected_grid_right"], - self.cars_orchestrator, - os.path.join( + orchestrator=self.cars_orchestrator, + pair_folder=os.path.join( self.dump_dir, "resampling", "corrected_for_pandora", pair_key, ), - pair_key, - self.sparse_mtch_pandora_app.get_margins_fun( - method="pandora" + pair_key="pair_key", + margins_fun=( + self.sparse_mtch_pandora_app.get_margins_fun( + method="pandora" + ) ), tile_width=None, tile_height=None,