9 #include "DGtal/shapes/parametric/Ball3D.h"
12 #include "DGtal/shapes/GaussDigitizer.h"
13 #include "DGtal/topology/LightImplicitDigitalSurface.h"
14 #include "DGtal/topology/DigitalSurface.h"
15 #include "DGtal/graph/DepthFirstVisitor.h"
16 #include "DGtal/graph/GraphVisitorRange.h"
19 #include "DGtal/geometry/surfaces/estimation/IIGeometricFunctors.h"
20 #include "DGtal/geometry/surfaces/estimation/IntegralInvariantCovarianceEstimator.h"
22 using namespace DGtal;
24 int main(
int argc,
char** argv )
27 const double radiusBall = 12.0;
29 const double trueAreaSurface = 4.0*M_PI*radiusBall*radiusBall;
36 Shape ball( center, radiusBall );
46 digitalBall.
attach( ball );
67 LightDigitalSurface lightDigitalSurface( kspace, digitalBall, surfelAdjacency, bel );
71 SurfelConstIterator sbegin = graphVisitorRange.begin();
72 SurfelConstIterator send = graphVisitorRange.end();
73 std::vector< Surfel > v_border;
74 while( sbegin != send )
76 v_border.push_back( *sbegin );
84 typedef IIGeometricFunctors::IINormalDirectionFunctor< Z3i::Space > NormalFunctor;
87 NormalFunctor normalFunctor;
88 IINormalEstimator normalEstimator( normalFunctor );
89 normalEstimator.attach( kspace, digitalBall );
90 normalEstimator.setParams(
radiusII / h );
91 normalEstimator.init( h, v_border.begin(), v_border.end() );
93 double areaSurfaceEstimated = 0.0;
95 for(
unsigned int i_position = 0; i_position < v_border.size(); ++i_position )
97 Z3i::RealPoint normalEstimated = normalEstimator.eval( &(v_border[i_position]) );
100 areaSurfaceEstimated += std::abs( normalEstimated.
dot( normalSurfel )) * h * h;
105 trace.
info() <<
"Area Surface estimated : " << areaSurfaceEstimated << std::endl;
106 trace.
info() <<
"True areaSurface : " << trueAreaSurface << std::endl;
107 trace.
info() <<
"Ratio : " << areaSurfaceEstimated / trueAreaSurface << std::endl;
Aim: Model of the concept StarShaped3D represents any Sphere in the space.
Aim: This class is useful to perform a depth-first exploration of a graph given a starting point or s...
Aim: Represents a set of n-1-cells in a nD space, together with adjacency relation between these cell...
Aim: A class for computing the Gauss digitization of some Euclidean shape, i.e. its intersection with...
void attach(ConstAlias< EuclideanShape > shape)
void init(const RealPoint &xLow, const RealPoint &xUp, typename RealVector::Component gridStep)
Aim: Transforms a graph visitor into a single pass input range.
const Point & lowerBound() const
const Point & upperBound() const
Aim: This class implement an Integral Invariant estimator which computes for each surfel the covarian...
Aim: This class is a model of CCellularGridSpaceND. It represents the cubical grid as a cell complex,...
bool init(const Point &lower, const Point &upper, bool isClosed)
Specifies the upper and lower bounds for the maximal cells in this space.
Dimension sOrthDir(const SCell &s) const
Given a signed surfel [s], returns its orthogonal direction (ie, the coordinate where the surfel is c...
const Point & sKCoords(const SCell &c) const
Return its Khalimsky coordinates.
SCell sDirectIncident(const SCell &p, Dimension k) const
Return the direct incident cell of [p] along [k] (the incident cell along [k])
Aim: A model of CDigitalSurfaceContainer which defines the digital surface as the boundary of an impl...
Aim: Implements basic operations that will be used in Point and Vector classes.
auto dot(const PointVector< dim, OtherComponent, OtherStorage > &v) const -> decltype(DGtal::dotProduct(*this, v))
Dot product with a PointVector.
PointVector< dim, double, std::array< double, dim > > getNormalized() const
static SCell findABel(const KSpace &K, const PointPredicate &pp, unsigned int nbtries=1000)
Aim: Represent adjacencies between surfel elements, telling if it follows an interior to exterior ord...
void beginBlock(const std::string &keyword="")
Point center(const std::vector< Point > &points)
DGtal is the top-level namespace which contains all DGtal functions and types.
Represents a signed cell in a cellular grid space by its Khalimsky coordinates and a boolean value.
int main(int argc, char **argv)
HyperRectDomain< Space > Domain