DGtal 1.3.0
Loading...
Searching...
No Matches
Public Types | Public Member Functions | Private Types | Private Attributes
DGtal::LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor > Class Template Reference

Aim: this class adapts any local functor on digital surface element to define a local estimator. This class is model of CDigitalSurfaceLocalEstimator. More...

#include <DGtal/geometry/surfaces/estimation/LocalEstimatorFromSurfelFunctorAdapter.h>

Public Types

typedef TDigitalSurfaceContainer DigitalSurfaceContainer
 Digital surface container type. More...
 
typedef TMetric Metric
 Metric type. More...
 
typedef Metric::Value Value
 Metric value type. More...
 
typedef Metric::Point Point
 Metric point type. More...
 
typedef TFunctorOnSurfel FunctorOnSurfel
 Functor on surfels type. More...
 
typedef TConvolutionFunctor ConvolutionFunctor
 Functor on double to compute convolution weights. More...
 
typedef TFunctorOnSurfel::Quantity Quantity
 Quantity type. More...
 
typedef double Scalar
 The "real number" type. More...
 
typedef DigitalSurface< DigitalSurfaceContainerSurface
 Digital surface type. More...
 
typedef DigitalSurfaceContainer::Surfel Surfel
 Surfel type. More...
 

Public Member Functions

 BOOST_CONCEPT_ASSERT ((concepts::CMetricSpace< TMetric >))
 Concept Checks. More...
 
 BOOST_CONCEPT_ASSERT ((concepts::CLocalEstimatorFromSurfelFunctor< TFunctorOnSurfel >))
 
 BOOST_CONCEPT_ASSERT ((concepts::CUnaryFunctor< TConvolutionFunctor, double, double >))
 
 BOOST_CONCEPT_ASSERT ((concepts::CDigitalSurfaceContainer< TDigitalSurfaceContainer >))
 
 LocalEstimatorFromSurfelFunctorAdapter ()
 
 LocalEstimatorFromSurfelFunctorAdapter (ConstAlias< Surface > aSurface, ConstAlias< TMetric > aMetric, Alias< FunctorOnSurfel > aFunctor, ConstAlias< ConvolutionFunctor > aConvolutionFunctor)
 
 LocalEstimatorFromSurfelFunctorAdapter (const LocalEstimatorFromSurfelFunctorAdapter &other)
 
LocalEstimatorFromSurfelFunctorAdapteroperator= (const LocalEstimatorFromSurfelFunctorAdapter &other)
 
 ~LocalEstimatorFromSurfelFunctorAdapter ()
 
Scalar h () const
 
void attach (ConstAlias< Surface > aSurface)
 
void setParams (ConstAlias< TMetric > aMetric, Alias< FunctorOnSurfel > aFunctor, ConstAlias< ConvolutionFunctor > aConvolutionFunctor, const Value radius)
 
template<typename SurfelConstIterator >
void init (const double _h, SurfelConstIterator itb, SurfelConstIterator ite)
 
template<typename SurfelConstIterator >
Quantity eval (const SurfelConstIterator &it) const
 
template<typename SurfelConstIterator , typename OutputIterator >
OutputIterator eval (const SurfelConstIterator &itb, const SurfelConstIterator &ite, OutputIterator result) const
 
void selfDisplay (std::ostream &out) const
 
bool isValid () const
 

Private Types

typedef FunctorOnSurfel::SCellEmbedder Embedder
 Embedded and type definitions. More...
 
typedef Embedder::RealPoint RealPoint
 Real point type. More...
 
typedef std::function< Value(Point) > MetricToPoint
 
typedef functors::Composer< Embedder, MetricToPoint, ValueVertexFunctor
 
typedef DistanceBreadthFirstVisitor< Surface, VertexFunctorVisitor
 

Private Attributes

CountedConstPtrOrConstPtr< SurfacemySurface
 Digital surface member. More...
 
FunctorOnSurfelmyFunctor
 Functor member. More...
 
CountedConstPtrOrConstPtr< MetricmyMetric
 Distance functor. More...
 
double myH
 Grid step. More...
 
bool myInit
 Has init been done before eval. More...
 
Embedder myEmbedder
 Embedder object. More...
 
CountedConstPtrOrConstPtr< ConvolutionFunctormyConvFunctor
 Convolution functor. More...
 
Value myRadius
 Ball radius. More...
 

Detailed Description

template<typename TDigitalSurfaceContainer, typename TMetric, typename TFunctorOnSurfel, typename TConvolutionFunctor>
class DGtal::LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor >

Aim: this class adapts any local functor on digital surface element to define a local estimator. This class is model of CDigitalSurfaceLocalEstimator.

Description of template class 'LocalEstimatorFromSurfelFunctorAdapter'

When we evaluate the adapted estimator at a surfel s, we first identify the set of neighboring around s using a DistanceBreadthFirstVisitor parametrized by a given metric. Then, the estimated quantity is computed applying a functor on the surfel set.

More precisely, this adapter needs a model of CMetricSpace to define the neighborhood and a model of CLocalEstimatorFromSurfelFunctor to perform the local estimator computation. When sent to the functor, the surfels are weighted using the distance from the kernel boundary: weights are defined in [0,1] interval, 1 for the center and decreasing to 0 with the distance to the specified kernel radius specified during the init(). The shape of the distance-to-weight function is defined by a functor of type TConvolutionFunctor.

During the init() method, we thus specify the gridstep h and the radius of the ball to consider to define the neighborhood. An instance of the convolution functor should be passed to the constructor.

Note that the visitor used in this class considers the distance function in the ambient space (not a geodesic one for instance) on canonical embedding of surfel elements (cf CanonicSCellEmbedder).

Template Parameters
TDigitalSurfaceContainerany model of digital surface container concept (CDigitalSurfaceContainer)
TMetricany model of CMetricSpace to be used in the neighborhood construction (e.g. LpMetric)
TFunctorOnSurfelan estimator on surfel set (model of CLocalEstimatorFromSurfelFunctor)
TConvolutionFunctortype of functor on double [0,1]->[0,1] to implement the response of a symmetric convolution kernel.

Definition at line 103 of file LocalEstimatorFromSurfelFunctorAdapter.h.

Member Typedef Documentation

◆ ConvolutionFunctor

template<typename TDigitalSurfaceContainer , typename TMetric , typename TFunctorOnSurfel , typename TConvolutionFunctor >
typedef TConvolutionFunctor DGtal::LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor >::ConvolutionFunctor

Functor on double to compute convolution weights.

Definition at line 130 of file LocalEstimatorFromSurfelFunctorAdapter.h.

◆ DigitalSurfaceContainer

template<typename TDigitalSurfaceContainer , typename TMetric , typename TFunctorOnSurfel , typename TConvolutionFunctor >
typedef TDigitalSurfaceContainer DGtal::LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor >::DigitalSurfaceContainer

Digital surface container type.

Definition at line 115 of file LocalEstimatorFromSurfelFunctorAdapter.h.

◆ Embedder

template<typename TDigitalSurfaceContainer , typename TMetric , typename TFunctorOnSurfel , typename TConvolutionFunctor >
typedef FunctorOnSurfel::SCellEmbedder DGtal::LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor >::Embedder
private

Embedded and type definitions.

Definition at line 149 of file LocalEstimatorFromSurfelFunctorAdapter.h.

◆ FunctorOnSurfel

template<typename TDigitalSurfaceContainer , typename TMetric , typename TFunctorOnSurfel , typename TConvolutionFunctor >
typedef TFunctorOnSurfel DGtal::LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor >::FunctorOnSurfel

Functor on surfels type.

Definition at line 127 of file LocalEstimatorFromSurfelFunctorAdapter.h.

◆ Metric

template<typename TDigitalSurfaceContainer , typename TMetric , typename TFunctorOnSurfel , typename TConvolutionFunctor >
typedef TMetric DGtal::LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor >::Metric

Metric type.

Definition at line 118 of file LocalEstimatorFromSurfelFunctorAdapter.h.

◆ MetricToPoint

template<typename TDigitalSurfaceContainer , typename TMetric , typename TFunctorOnSurfel , typename TConvolutionFunctor >
typedef std::function< Value ( Point ) > DGtal::LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor >::MetricToPoint
private

Definition at line 152 of file LocalEstimatorFromSurfelFunctorAdapter.h.

◆ Point

template<typename TDigitalSurfaceContainer , typename TMetric , typename TFunctorOnSurfel , typename TConvolutionFunctor >
typedef Metric::Point DGtal::LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor >::Point

Metric point type.

Definition at line 124 of file LocalEstimatorFromSurfelFunctorAdapter.h.

◆ Quantity

template<typename TDigitalSurfaceContainer , typename TMetric , typename TFunctorOnSurfel , typename TConvolutionFunctor >
typedef TFunctorOnSurfel::Quantity DGtal::LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor >::Quantity

Quantity type.

Definition at line 133 of file LocalEstimatorFromSurfelFunctorAdapter.h.

◆ RealPoint

template<typename TDigitalSurfaceContainer , typename TMetric , typename TFunctorOnSurfel , typename TConvolutionFunctor >
typedef Embedder::RealPoint DGtal::LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor >::RealPoint
private

Real point type.

Definition at line 151 of file LocalEstimatorFromSurfelFunctorAdapter.h.

◆ Scalar

template<typename TDigitalSurfaceContainer , typename TMetric , typename TFunctorOnSurfel , typename TConvolutionFunctor >
typedef double DGtal::LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor >::Scalar

The "real number" type.

Definition at line 136 of file LocalEstimatorFromSurfelFunctorAdapter.h.

◆ Surface

template<typename TDigitalSurfaceContainer , typename TMetric , typename TFunctorOnSurfel , typename TConvolutionFunctor >
typedef DigitalSurface< DigitalSurfaceContainer > DGtal::LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor >::Surface

Digital surface type.

Definition at line 139 of file LocalEstimatorFromSurfelFunctorAdapter.h.

◆ Surfel

template<typename TDigitalSurfaceContainer , typename TMetric , typename TFunctorOnSurfel , typename TConvolutionFunctor >
typedef DigitalSurfaceContainer::Surfel DGtal::LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor >::Surfel

Surfel type.

Definition at line 142 of file LocalEstimatorFromSurfelFunctorAdapter.h.

◆ Value

template<typename TDigitalSurfaceContainer , typename TMetric , typename TFunctorOnSurfel , typename TConvolutionFunctor >
typedef Metric::Value DGtal::LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor >::Value

Metric value type.

Definition at line 121 of file LocalEstimatorFromSurfelFunctorAdapter.h.

◆ VertexFunctor

template<typename TDigitalSurfaceContainer , typename TMetric , typename TFunctorOnSurfel , typename TConvolutionFunctor >
typedef functors::Composer<Embedder, MetricToPoint, Value> DGtal::LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor >::VertexFunctor
private

Definition at line 153 of file LocalEstimatorFromSurfelFunctorAdapter.h.

◆ Visitor

template<typename TDigitalSurfaceContainer , typename TMetric , typename TFunctorOnSurfel , typename TConvolutionFunctor >
typedef DistanceBreadthFirstVisitor< Surface, VertexFunctor> DGtal::LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor >::Visitor
private

Definition at line 155 of file LocalEstimatorFromSurfelFunctorAdapter.h.

Constructor & Destructor Documentation

◆ LocalEstimatorFromSurfelFunctorAdapter() [1/3]

template<typename TDigitalSurfaceContainer , typename TMetric , typename TFunctorOnSurfel , typename TConvolutionFunctor >
DGtal::LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor >::LocalEstimatorFromSurfelFunctorAdapter ( )

Default constructor.

◆ LocalEstimatorFromSurfelFunctorAdapter() [2/3]

template<typename TDigitalSurfaceContainer , typename TMetric , typename TFunctorOnSurfel , typename TConvolutionFunctor >
DGtal::LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor >::LocalEstimatorFromSurfelFunctorAdapter ( ConstAlias< Surface aSurface,
ConstAlias< TMetric >  aMetric,
Alias< FunctorOnSurfel aFunctor,
ConstAlias< ConvolutionFunctor aConvolutionFunctor 
)

Constructor.

Parameters
aSurfacea digital surface
aMetricthe metric
aFunctora functor on digital surface elements (e.g. the normal or the curvature estimation)
aConvolutionFunctora functor giving the weight as a function of the distance to the surfel.

◆ LocalEstimatorFromSurfelFunctorAdapter() [3/3]

template<typename TDigitalSurfaceContainer , typename TMetric , typename TFunctorOnSurfel , typename TConvolutionFunctor >
DGtal::LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor >::LocalEstimatorFromSurfelFunctorAdapter ( const LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor > &  other)
inline

Copy constructor.

Parameters
otherthe object to clone. Forbidden by default.

Definition at line 188 of file LocalEstimatorFromSurfelFunctorAdapter.h.

188 :
189 mySurface(other.mySurface), myFunctor(other.myFunctor), myMetric(other.myMetric),
190 myEmbedder(other.myEmbedder), myConvFunctor(other.myConvFunctor)
191 { }
CountedConstPtrOrConstPtr< ConvolutionFunctor > myConvFunctor
Convolution functor.
CountedConstPtrOrConstPtr< Metric > myMetric
Distance functor.
CountedConstPtrOrConstPtr< Surface > mySurface
Digital surface member.

◆ ~LocalEstimatorFromSurfelFunctorAdapter()

template<typename TDigitalSurfaceContainer , typename TMetric , typename TFunctorOnSurfel , typename TConvolutionFunctor >
DGtal::LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor >::~LocalEstimatorFromSurfelFunctorAdapter ( )

Destructor.

Member Function Documentation

◆ attach()

template<typename TDigitalSurfaceContainer , typename TMetric , typename TFunctorOnSurfel , typename TConvolutionFunctor >
void DGtal::LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor >::attach ( ConstAlias< Surface aSurface)

Attach a digital surface. After this call, the object is then invalid and the user must called setParams.

Parameters
aSurfacethe digital surface that is aliased in this. The user can secure the aliasing by passing a CountedConstPtrOrConstPtr.

◆ BOOST_CONCEPT_ASSERT() [1/4]

template<typename TDigitalSurfaceContainer , typename TMetric , typename TFunctorOnSurfel , typename TConvolutionFunctor >
DGtal::LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor >::BOOST_CONCEPT_ASSERT ( (concepts::CDigitalSurfaceContainer< TDigitalSurfaceContainer >)  )

◆ BOOST_CONCEPT_ASSERT() [2/4]

template<typename TDigitalSurfaceContainer , typename TMetric , typename TFunctorOnSurfel , typename TConvolutionFunctor >
DGtal::LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor >::BOOST_CONCEPT_ASSERT ( (concepts::CLocalEstimatorFromSurfelFunctor< TFunctorOnSurfel >)  )

◆ BOOST_CONCEPT_ASSERT() [3/4]

template<typename TDigitalSurfaceContainer , typename TMetric , typename TFunctorOnSurfel , typename TConvolutionFunctor >
DGtal::LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor >::BOOST_CONCEPT_ASSERT ( (concepts::CMetricSpace< TMetric >)  )

Concept Checks.

◆ BOOST_CONCEPT_ASSERT() [4/4]

template<typename TDigitalSurfaceContainer , typename TMetric , typename TFunctorOnSurfel , typename TConvolutionFunctor >
DGtal::LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor >::BOOST_CONCEPT_ASSERT ( (concepts::CUnaryFunctor< TConvolutionFunctor, double, double >)  )

◆ eval() [1/2]

template<typename TDigitalSurfaceContainer , typename TMetric , typename TFunctorOnSurfel , typename TConvolutionFunctor >
template<typename SurfelConstIterator >
Quantity DGtal::LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor >::eval ( const SurfelConstIterator &  it) const
Returns
the estimated quantity at *it
Parameters
[in]itthe surfel iterator at which we evaluate the quantity.

◆ eval() [2/2]

template<typename TDigitalSurfaceContainer , typename TMetric , typename TFunctorOnSurfel , typename TConvolutionFunctor >
template<typename SurfelConstIterator , typename OutputIterator >
OutputIterator DGtal::LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor >::eval ( const SurfelConstIterator &  itb,
const SurfelConstIterator &  ite,
OutputIterator  result 
) const
Returns
the estimated quantity in the range [itb,ite)
Parameters
[in]itbstarting surfel iterator.
[in]iteend surfel iterator.
[in,out]resultresulting output iterator

◆ h()

template<typename TDigitalSurfaceContainer , typename TMetric , typename TFunctorOnSurfel , typename TConvolutionFunctor >
Scalar DGtal::LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor >::h ( ) const
Returns
the gridstep.
Precondition
must be called after init

◆ init()

template<typename TDigitalSurfaceContainer , typename TMetric , typename TFunctorOnSurfel , typename TConvolutionFunctor >
template<typename SurfelConstIterator >
void DGtal::LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor >::init ( const double  _h,
SurfelConstIterator  itb,
SurfelConstIterator  ite 
)

Initialisation of estimator parameters.

Parameters
[in]_hgrid size (must be >0).
[in]itbiterator after the last surfel of the surface.
[in]iteiterator on the first surfel of the surface.

◆ isValid()

template<typename TDigitalSurfaceContainer , typename TMetric , typename TFunctorOnSurfel , typename TConvolutionFunctor >
bool DGtal::LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor >::isValid ( ) const

Checks the validity/consistency of the object.

Returns
'true' if the object is valid, 'false' otherwise.

◆ operator=()

template<typename TDigitalSurfaceContainer , typename TMetric , typename TFunctorOnSurfel , typename TConvolutionFunctor >
LocalEstimatorFromSurfelFunctorAdapter & DGtal::LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor >::operator= ( const LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor > &  other)
inline

◆ selfDisplay()

template<typename TDigitalSurfaceContainer , typename TMetric , typename TFunctorOnSurfel , typename TConvolutionFunctor >
void DGtal::LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor >::selfDisplay ( std::ostream &  out) const

Writes/Displays the object on an output stream.

Parameters
outthe output stream where the object is written.

◆ setParams()

template<typename TDigitalSurfaceContainer , typename TMetric , typename TFunctorOnSurfel , typename TConvolutionFunctor >
void DGtal::LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor >::setParams ( ConstAlias< TMetric >  aMetric,
Alias< FunctorOnSurfel aFunctor,
ConstAlias< ConvolutionFunctor aConvolutionFunctor,
const Value  radius 
)

Initialisation of estimator specific parameters.

Parameters
aMetricthe metric
aFunctora functor on digital surface elements (e.g. the normal or the curvature estimation)
aConvolutionFunctora functor giving the weight as a function of the distance to the surfel.
radiusa kernel radius.

Field Documentation

◆ myConvFunctor

template<typename TDigitalSurfaceContainer , typename TMetric , typename TFunctorOnSurfel , typename TConvolutionFunctor >
CountedConstPtrOrConstPtr<ConvolutionFunctor> DGtal::LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor >::myConvFunctor
private

◆ myEmbedder

template<typename TDigitalSurfaceContainer , typename TMetric , typename TFunctorOnSurfel , typename TConvolutionFunctor >
Embedder DGtal::LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor >::myEmbedder
private

◆ myFunctor

template<typename TDigitalSurfaceContainer , typename TMetric , typename TFunctorOnSurfel , typename TConvolutionFunctor >
FunctorOnSurfel* DGtal::LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor >::myFunctor
private

◆ myH

template<typename TDigitalSurfaceContainer , typename TMetric , typename TFunctorOnSurfel , typename TConvolutionFunctor >
double DGtal::LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor >::myH
private

Grid step.

Definition at line 313 of file LocalEstimatorFromSurfelFunctorAdapter.h.

◆ myInit

template<typename TDigitalSurfaceContainer , typename TMetric , typename TFunctorOnSurfel , typename TConvolutionFunctor >
bool DGtal::LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor >::myInit
private

Has init been done before eval.

Definition at line 316 of file LocalEstimatorFromSurfelFunctorAdapter.h.

◆ myMetric

template<typename TDigitalSurfaceContainer , typename TMetric , typename TFunctorOnSurfel , typename TConvolutionFunctor >
CountedConstPtrOrConstPtr<Metric> DGtal::LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor >::myMetric
private

◆ myRadius

template<typename TDigitalSurfaceContainer , typename TMetric , typename TFunctorOnSurfel , typename TConvolutionFunctor >
Value DGtal::LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor >::myRadius
private

Ball radius.

Definition at line 325 of file LocalEstimatorFromSurfelFunctorAdapter.h.

◆ mySurface

template<typename TDigitalSurfaceContainer , typename TMetric , typename TFunctorOnSurfel , typename TConvolutionFunctor >
CountedConstPtrOrConstPtr<Surface> DGtal::LocalEstimatorFromSurfelFunctorAdapter< TDigitalSurfaceContainer, TMetric, TFunctorOnSurfel, TConvolutionFunctor >::mySurface
private

The documentation for this class was generated from the following file: