32 #include "DGtal/base/Common.h" 33 #include "DGtal/helpers/StdDefs.h" 34 #include "DGtal/base/BasicFunctors.h" 35 #include "DGtal/graph/GraphVisitorRange.h" 36 #include "DGtal/io/boards/Board2D.h" 37 #include "DGtal/io/Color.h" 38 #include "DGtal/io/colormaps/GradientColorMap.h" 40 #include "DGtal/shapes/Shapes.h" 41 #include "DGtal/shapes/implicit/ImplicitBall.h" 42 #include "DGtal/shapes/GaussDigitizer.h" 44 #include "DGtal/topology/CanonicSCellEmbedder.h" 45 #include "DGtal/graph/DistanceBreadthFirstVisitor.h" 46 #include "DGtal/geometry/volumes/distance/ExactPredicateLpSeparableMetric.h" 47 #include "DGtal/geometry/surfaces/estimation/LocalEstimatorFromSurfelFunctorAdapter.h" 48 #include "DGtal/geometry/surfaces/estimation/estimationFunctors/BasicEstimatorFromSurfelsFunctors.h" 49 #include "DGtal/topology/LightImplicitDigitalSurface.h" 50 #include "DGtal/geometry/surfaces/estimation/estimationFunctors/SphereFittingEstimator.h" 51 #include "DGtal/geometry/surfaces/estimation/estimationFunctors/ElementaryConvolutionNormalVectorEstimator.h" 52 #include "DGtal/geometry/surfaces/estimation/EstimatorCache.h" 56 using namespace DGtal;
69 unsigned int nbok = 0;
76 Point p1( -20, -20, -20 );
77 Point p2( 20, 20, 20 );
83 gauss.init(p1, p2, 1);
87 typedef Surface::Surfel Surfel;
91 nbok +=
K.
init( p1, p2,
true ) ? 1 : 0;
93 trace.
info() <<
"(" << nbok <<
"/" << nb <<
") " 94 <<
"K.init() is ok" << std::endl;
96 SurfaceContainer* surfaceContainer =
new SurfaceContainer
98 Surface surface( surfaceContainer );
111 FunctorNormal functorNormal(embedder, 1.0);
112 ReporterNormal reporterNormal;
113 reporterNormal.attach(surface);
114 reporterNormal.setParams(l2Metric, functorNormal, gaussKernelFunc, 5.0);
117 NormalCache normalCache(reporterNormal);
118 normalCache.init( 1, surface.begin(), surface.end());
119 trace.
info() <<
"Normal vector field cached... "<< normalCache << std::endl;
122 trace.
beginBlock(
"Creating sphere fitting adapter from normal vector field");
127 Functor fitter(embedder,1.0, 5.0, normalCache);
128 ConvFunctor convFunc(1.0);
130 reporter.attach(surface);
131 reporter.setParams(l2Metric, fitter , convFunc, 15.0);
133 reporter.init(1, surface.begin(), surface.end());
136 Functor::Quantity val = reporter.eval( it );
137 trace.
info() <<
"Fitting = "<<val.center <<
" rad="<<val.radius<<std::endl;
144 nbok +=
true ? 1 : 0;
146 trace.
info() <<
"(" << nbok <<
"/" << nb <<
") " 147 <<
"true == true" << std::endl;
155 int main(
int argc,
char** argv )
159 for (
int i = 0; i < argc; ++i )
164 trace.
emphase() << ( res ?
"Passed." :
"Error." ) << endl;
void beginBlock(const std::string &keyword="")
Aim: defines a functor on double numbers which corresponds to a Gaussian convolution kernel....
Aim: Define a simple functor that returns a constant value (0 by default).
InHalfPlaneBySimple3x3Matrix< Point, double > Functor
Aim: Estimates normal vector by convolution of elementary normal vector to adjacent surfel.
Aim: A model of CDigitalSurfaceContainer which defines the digital surface as the boundary of an impl...
MyDigitalSurface::ConstIterator ConstIterator
Aim: A utility class for constructing surfaces (i.e. set of (n-1)-cells).
void attach(ConstAlias< EuclideanShape > shape)
Aim: Represents a set of n-1-cells in a nD space, together with adjacency relation between these cell...
PointVector< 3, double > RealPoint
Aim: implements separable l_p metrics with exact predicates.
bool init(const Point &lower, const Point &upper, bool isClosed)
Specifies the upper and lower bounds for the maximal cells in this space.
Aim: A class for computing the Gauss digitization of some Euclidean shape, i.e. its intersection with...
int main(int argc, char **argv)
Aim: model of CEuclideanOrientedShape and CEuclideanBoundedShape concepts to create a ball in nD....
DGtal is the top-level namespace which contains all DGtal functions and types.
Aim: this class adapts any local functor on digital surface element to define a local estimator....
Aim: this class adapts any local surface estimator to cache the estimated values in a associative con...
Aim: This class is a model of CCellularGridSpaceND. It represents the cubical grid as a cell complex,...
Aim: Use Patate library to perform a local sphere fitting.