GeoBox provides several tools for managing and reconstructing surfaces from point sets:
- Smooth point set: Applies smoothing to a point set.
- Filter outliers: Removes points that are considered outliers based on their distance to their $N$-th nearest neighbor.
- Reconstruct Co3Ne: Reconstructs a surface from a point set using the Co3Ne algorithm.
- Reconstruct Poisson: Reconstructs a surface from a point set using Poisson reconstruction.
Example command signatures (as seen in the GUI):
void smooth(index_t nb_iterations=2, index_t nb_neighbors=30)
void filter_outliers(index_t N=70, double R=0.01)
void reconstruct_Co3Ne(double radius=5.0, index_t nb_smth_iter=2, index_t nb_neighbors=30)
void reconstruct_Poisson(index_t depth=8)