Crate threecrate_reconstruction

Crate threecrate_reconstruction 

Source
Expand description

§ThreeCrate Reconstruction

Surface reconstruction algorithms for 3D point clouds.

This crate provides various algorithms for reconstructing surfaces from 3D point clouds, including Poisson reconstruction, ball pivoting, alpha shapes, and Delaunay triangulation.

Re-exports§

pub use alpha_shape::*;
pub use ball_pivoting::*;
pub use delaunay::*;
pub use marching_cubes::*;
pub use moving_least_squares::*;
pub use parallel::*;
pub use pipeline::*;
pub use poisson::*;

Modules§

alpha_shape
Alpha shape reconstruction with enhanced features
ball_pivoting
Enhanced Ball Pivoting Algorithm for surface reconstruction
delaunay
Delaunay triangulation for surface reconstruction
marching_cubes
Marching Cubes algorithm for volumetric surface reconstruction
moving_least_squares
Moving Least Squares (MLS) surface fitting for smooth surface reconstruction
parallel
Parallel processing utilities for surface reconstruction algorithms
pipeline
Unified reconstruction pipeline with automatic algorithm selection
poisson
Poisson surface reconstruction