You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Context:
To enable efficient processing of CO3D data, which consists of multiple gigabytes, we need to refine the blockwise functionality, particularly the apply section, to integrate our RANSAC filter. Additionally, several modifications must be implemented to optimize processing using our latest advancements in tiling and the implementation of a multiprocessing cluster.
Modifications to be made:
Replacement of the subdivision grid creation
Integration of the new tiling method.
Generation of coordinates and the required number of tiles for an efficient iteration in multiprocessing.
in the following format : {"positions": res_positions, "coreg": res_correg}
Implementation of reprojection in multiprocessing
Modification of the _preprocess_coreg_fit_raster_raster function to integrate multiprocessing from GeoUtils.
Use of the previously created tile grid.
Creation and management of a multiprocessing cluster.
Reprojection of data on the tiles.
Replacing the call to stat with get_stats
Removal of the stat call in blockwise.
Replacement with get_stats, which is now available for each raster.
The text was updated successfully, but these errors were encountered:
Context:
To enable efficient processing of CO3D data, which consists of multiple gigabytes, we need to refine the
blockwise
functionality, particularly theapply
section, to integrate our RANSAC filter. Additionally, several modifications must be implemented to optimize processing using our latest advancements in tiling and the implementation of a multiprocessing cluster.Modifications to be made:
Replacement of the subdivision grid creation
{"positions": res_positions, "coreg": res_correg}
Implementation of reprojection in multiprocessing
_preprocess_coreg_fit_raster_raster
function to integrate multiprocessing fromGeoUtils
.Replacing the call to
stat
withget_stats
stat
call inblockwise
.get_stats
, which is now available for each raster.The text was updated successfully, but these errors were encountered: