mirror of
https://github.com/CloudCompare/PoissonRecon.git
synced 2026-08-29 16:40:28 +08:00
14e696f9e3
+ B-spline degree defaulted to 2 for now + compilation with VS2012 and older
119 lines
5.4 KiB
C++
119 lines
5.4 KiB
C++
//##########################################################################
|
|
//# #
|
|
//# CLOUDCOMPARE WRAPPER: PoissonReconLib #
|
|
//# #
|
|
//# This program is free software; you can redistribute it and/or modify #
|
|
//# it under the terms of the GNU General Public License as published by #
|
|
//# the Free Software Foundation; version 2 of the License. #
|
|
//# #
|
|
//# This program is distributed in the hope that it will be useful, #
|
|
//# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
|
//# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
|
|
//# GNU General Public License for more details. #
|
|
//# #
|
|
//# COPYRIGHT: Daniel Girardeau-Montaut #
|
|
//# #
|
|
//##########################################################################
|
|
|
|
#ifndef CC_POISSON_RECON_LIB_WRAPPER
|
|
#define CC_POISSON_RECON_LIB_WRAPPER
|
|
|
|
#include "../Src/Ply.h"
|
|
#include "../Src/Geometry.h"
|
|
#include "../Src/PointStream.h"
|
|
|
|
//! Wrapper to use PoissonRecon (Kazhdan et. al) as a library
|
|
class PoissonReconLib
|
|
{
|
|
public:
|
|
|
|
//! Algorithm parameters
|
|
struct Parameters
|
|
{
|
|
//! Default initializer
|
|
Parameters();
|
|
|
|
//! The maximum depth of the tree that will be used for surface reconstruction
|
|
/** Running at depth d corresponds to solving on a 2^d x 2^d x 2^d.
|
|
Note that since the reconstructor adapts the octree to the sampling density,
|
|
the specified reconstruction depth is only an upper bound.
|
|
**/
|
|
int depth;
|
|
|
|
//! The depth beyond which the octree will be adapted.
|
|
/** At coarser depths, the octree will be complete, containing all 2^d x 2^d x 2^d nodes.
|
|
**/
|
|
int fullDepth;
|
|
|
|
//! The depth up to which a conjugate-gradients solver will be used to solve the linear system.
|
|
/** Beyond this depth Gauss-Seidel relaxation will be used.
|
|
**/
|
|
int cgDepth;
|
|
|
|
//! The ratio between the diameter of the cube used for reconstruction and the diameter of the samples' bounding cube.
|
|
/** Specifies the factor of the bounding cube that the input samples should fit into.
|
|
**/
|
|
float scale;
|
|
|
|
//! The minimum number of sample points that should fall within an octree node as the octree construction is adapted to sampling density.
|
|
/** This parameter specifies the minimum number of points that should fall within an octree node.
|
|
For noise-free samples, small values in the range [1.0 - 5.0] can be used. For more noisy samples, larger values
|
|
in the range [15.0 - 20.0] may be needed to provide a smoother, noise-reduced, reconstruction.
|
|
**/
|
|
float samplesPerNode;
|
|
|
|
//! The importance that interpolation of the point samples is given in the formulation of the screened Poisson equation.
|
|
/** The results of the original (unscreened) Poisson Reconstruction can be obtained by setting this value to 0.
|
|
**/
|
|
float pointWeight;
|
|
|
|
//! The (maximum if CG) number of solver iterations
|
|
int iters;
|
|
|
|
//! This parameter specifies the number of threads across which the solver should be parallelized
|
|
int threads;
|
|
|
|
//! If this flag is enabled, the size of a sample's normals is used as a confidence value, affecting the sample's constribution to the reconstruction process
|
|
bool confidence;
|
|
//! If this flag is enabled, the size of a sample's normals is used as to modulate the interpolation weight
|
|
bool normalWeights;
|
|
//! If this flag is enabled, the sampling density is written out with the vertices
|
|
bool density;
|
|
|
|
//! Pull factor for color interpolation
|
|
float colorInterp;
|
|
|
|
//DGM: the above parameters are not documented in PoissonRecon
|
|
|
|
bool complete;
|
|
bool showResidual;
|
|
int kernelDepth;
|
|
int maxSolveDepth;
|
|
bool dirichlet;
|
|
|
|
//DGM: the above parameters are hidden in PoissonRecon
|
|
|
|
//! If this flag is enabled, the isosurface extraction does not add a planar polygon's barycenter in order to ensure that the output mesh is manifold
|
|
bool nonManifold;
|
|
//! This flag specifies the coarsest depth at which the system is to be solved
|
|
int minDepth;
|
|
//! This flag specifies the accuracy cut-off to be used for CG
|
|
float cgAccuracy;
|
|
//! This flag specifies the exponent scale for the adaptive weighting
|
|
int adaptiveExp;
|
|
};
|
|
|
|
//! Main entry point (shortcut to Execute)
|
|
static bool Reconstruct(Parameters params, OrientedPointStream< float >* pointStream, CoredVectorMeshData< PlyValueVertex< float > >& mesh);
|
|
//! Main entry point (shortcut to Execute) for colored clouds
|
|
static bool Reconstruct(Parameters params, OrientedPointStreamWithData< float , Point3D< unsigned char > >* pointStream, CoredVectorMeshData< PlyColorAndValueVertex< float > >& mesh);
|
|
|
|
//! Main entry point (shortcut to Execute)
|
|
static bool Reconstruct(Parameters params, OrientedPointStream< double >* pointStream, CoredVectorMeshData< PlyValueVertex< double > >& mesh);
|
|
//! Main entry point (shortcut to Execute) for colored clouds
|
|
static bool Reconstruct(Parameters params, OrientedPointStreamWithData< double , Point3D< unsigned char > >* pointStream, CoredVectorMeshData< PlyColorAndValueVertex< double > >& mesh);
|
|
|
|
};
|
|
|
|
#endif // CC_POISSON_RECON_LIB_6_11_WRAPPER
|