34 #if defined(IntegralInvariantVolumeEstimator_RECURSES)
35 #error Recursive header files inclusion detected in IntegralInvariantVolumeEstimator.h
38 #define IntegralInvariantVolumeEstimator_RECURSES
40 #if !defined IntegralInvariantVolumeEstimator_h
42 #define IntegralInvariantVolumeEstimator_h
47 #include "DGtal/base/Common.h"
49 #include "DGtal/kernel/BasicPointFunctors.h"
50 #include "DGtal/kernel/CPointPredicate.h"
51 #include "DGtal/topology/CCellFunctor.h"
52 #include "DGtal/topology/CCellularGridSpaceND.h"
53 #include "DGtal/geometry/surfaces/FunctorOnCells.h"
55 #include "DGtal/shapes/GaussDigitizer.h"
56 #include "DGtal/shapes/Shapes.h"
58 #include "DGtal/geometry/surfaces/DigitalSurfaceConvolver.h"
59 #include "DGtal/geometry/surfaces/estimation/IIGeometricFunctors.h"
60 #include "DGtal/shapes/EuclideanShapesDecorator.h"
62 #include "DGtal/shapes/implicit/ImplicitBall.h"
112 template <
typename TKSpace,
typename TPo
intPredicate,
typename TVolumeFunctor>
163 typename VolumeFunctor::Argument >::value ));
245 template <
typename SurfelConstIterator>
246 void init(
const double _h, SurfelConstIterator itb, SurfelConstIterator ite );
262 template<
typename SurfelConstIterator >
286 template <
typename OutputIterator,
typename SurfelConstIterator>
287 OutputIterator
eval( SurfelConstIterator itb,
288 SurfelConstIterator ite,
289 OutputIterator result )
const;
331 template <
typename TKSpace,
typename TPo
intPredicate,
typename TVolumeFunctor>
341 #include "DGtal/geometry/surfaces/estimation/IntegralInvariantVolumeEstimator.ih"
348 #undef IntegralInvariantVolumeEstimator_RECURSES
Aim: This class encapsulates its parameter class so that to indicate to the user that the object/poin...
Aim: Smart pointer based on reference counts.
Aim: A wrapper class around a STL associative container for storing sets of digital points within som...
std::pair< KernelConstIterator, KernelConstIterator > PairIterators
Aim: Constructive Solid Geometry (CSG) between models of CEuclideanBoundedShape and CEuclideanOriente...
Aim: Convert a functor on Digital Point to a Functor on Khalimsky Cell.
Aim: A class for computing the Gauss digitization of some Euclidean shape, i.e. its intersection with...
Aim: model of CEuclideanOrientedShape and CEuclideanBoundedShape concepts to create a ball in nD....
Aim: This class implement an Integral Invariant estimator which computes for each surfel the volume o...
Self & operator=(const Self &other)
Space::RealVector RealVector
CountedConstPtrOrConstPtr< PointPredicate > myPointPredicate
Smart pointer (if required) on a point predicate.
TPointPredicate PointPredicate
TVolumeFunctor VolumeFunctor
const KernelSpelFunctor myKernelFunctor
Kernel functor (on Spel)
IntegralInvariantVolumeEstimator< TKSpace, TPointPredicate, TVolumeFunctor > Self
VolumeFunctor myFct
The volume functor that transforms the volume into a quantity.
std::vector< DigitalSet * > myKernelsSet
Array of shifting masks. Size = 9 for each shifting (0-adjacent and full kernel included)
BOOST_CONCEPT_ASSERT((concepts::CCellFunctor< ShapeSpelFunctor >))
~IntegralInvariantVolumeEstimator()
FunctorOnCells< ShapePointFunctor, KSpace > ShapeSpelFunctor
IntegralInvariantVolumeEstimator(VolumeFunctor fct=VolumeFunctor())
GaussDigitizer< Space, EuclideanMinus > DigitalShape
DigitalSurfaceConvolver< ShapeSpelFunctor, KernelSpelFunctor, KSpace, DigitalShapeKernel > Convolver
Convolver::CovarianceMatrix Matrix
functors::ConstValueCell< Value, Spel > KernelSpelFunctor
void setParams(const double dRadius)
BOOST_CONCEPT_ASSERT((concepts::CCellularGridSpaceND< KSpace >))
void attach(ConstAlias< KSpace > K, ConstAlias< PointPredicate > aPointPredicate)
Quantity eval(SurfelConstIterator it) const
Convolver::PairIterators PairIterators
OutputIterator eval(SurfelConstIterator itb, SurfelConstIterator ite, OutputIterator result) const
VolumeFunctor::Quantity Quantity
The returned type of the estimator, depends on the functor.
void init(const double _h, SurfelConstIterator itb, SurfelConstIterator ite)
void selfDisplay(std::ostream &out) const
CountedPtr< ShapeSpelFunctor > myShapeSpelFunctor
Smart pointer on functor spel -> {0,1}.
ImplicitBall< Space > KernelSupport
IntegralInvariantVolumeEstimator(const Self &other)
BOOST_STATIC_ASSERT((concepts::ConceptUtils::SameType< typename Convolver::Quantity, typename VolumeFunctor::Argument >::value))
Matrix::Component Component
HyperRectDomain< Space > Domain
CountedPtr< DigitalShapeKernel > myDigKernel
Digital kernel.
SurfelSet::const_iterator ConstIteratorKernel
KSpace::SurfelSet SurfelSet
std::vector< PairIterators > myKernels
array of begin/end iterator of shifting masks.
CountedPtr< ShapePointFunctor > myShapePointFunctor
Smart pointer on functor point -> {0,1}.
GaussDigitizer< Space, KernelSupport > DigitalShapeKernel
CountedPtr< KernelSupport > myKernel
Euclidean kernel.
Scalar myRadius
"digital" radius of the kernel (buy may be non integer).
BOOST_CONCEPT_ASSERT((concepts::CPointPredicate< PointPredicate >))
Space::RealPoint RealPoint
BOOST_CONCEPT_ASSERT((concepts::CUnaryFunctor< VolumeFunctor, Component, Quantity >))
DigitalSetSelector< Domain, BIG_DS+HIGH_VAR_DS >::Type DigitalSet
CountedPtr< Convolver > myConvolver
Convolver.
CountedPtr< Domain > myShapeDomain
Smart pointer on domain
Scalar myH
precision of the grid
functors::PointFunctorFromPointPredicateAndDomain< PointPredicate, Domain, unsigned int > ShapePointFunctor
IntegralInvariantVolumeEstimator(ConstAlias< KSpace > K, ConstAlias< PointPredicate > aPointPredicate, VolumeFunctor fct=VolumeFunctor())
int Value
The type used for convolutions.
EuclideanShapesCSG< KernelSupport, KernelSupport > EuclideanMinus
std::set< SCell > SurfelSet
Preferred type for defining a set of surfels (always signed cells).
Aim: implements basic MxN Matrix services (M,N>=1).
Aim: Define a simple functor that returns a constant quantity (0 by default).
DGtal is the top-level namespace which contains all DGtal functions and types.
std::ostream & operator<<(std::ostream &out, const ATu0v1< TKSpace, TLinearAlgebra > &object)
Represents a signed cell in a cellular grid space by its Khalimsky coordinates and a boolean value.
Aim: Defines a functor on cells.
Aim: This concept describes a cellular grid space in nD. In these spaces obtained by cartesian produc...
Aim: Defines a predicate on a point.
Aim: Defines a unary functor, which associates arguments to results.
Create a point functor from a point predicate and a domain.