DGtal  1.0.beta
Public Types | Public Member Functions | Private Attributes
DGtal::functors::IntervalThresholder< T > Class Template Reference

#include <DGtal/base/BasicFunctors.h>

Collaboration diagram for DGtal::functors::IntervalThresholder< T >:
[legend]

Public Types

typedef T Input
 
typedef Thresholder< T, false, true > Tlow
 
typedef Thresholder< T, true, true > Tup
 
typedef PredicateCombiner< Tlow, Tup, AndBoolFct2CombinedPredicate
 

Public Member Functions

 BOOST_CONCEPT_ASSERT ((boost::EqualityComparable< T >))
 
 BOOST_CONCEPT_ASSERT ((boost::LessThanComparable< T >))
 
 IntervalThresholder (const Input &low, const Input &up)
 
bool operator() (const Input &aI) const
 

Private Attributes

Tlow myTlow
 
Tup myTup
 
CombinedPredicate myPred
 

Detailed Description

template<typename T>
class DGtal::functors::IntervalThresholder< T >

Aim: A small functor with an operator () that compares one value to an interval.

template class IntervalThresholder

Template Parameters
Ttype for a value that must be equality and less-than comparable

Definition at line 568 of file BasicFunctors.h.

Member Typedef Documentation

Definition at line 580 of file BasicFunctors.h.

template<typename T>
typedef T DGtal::functors::IntervalThresholder< T >::Input

input type

Definition at line 575 of file BasicFunctors.h.

template<typename T>
typedef Thresholder<T,false,true> DGtal::functors::IntervalThresholder< T >::Tlow

predicates type

Definition at line 578 of file BasicFunctors.h.

template<typename T>
typedef Thresholder<T,true,true> DGtal::functors::IntervalThresholder< T >::Tup

Definition at line 579 of file BasicFunctors.h.

Constructor & Destructor Documentation

template<typename T>
DGtal::functors::IntervalThresholder< T >::IntervalThresholder ( const Input low,
const Input up 
)
inline

Constructor.

Parameters
lowlower threshold.
upupper threshold.

Definition at line 587 of file BasicFunctors.h.

Member Function Documentation

template<typename T>
DGtal::functors::IntervalThresholder< T >::BOOST_CONCEPT_ASSERT ( (boost::EqualityComparable< T >)  )
template<typename T>
DGtal::functors::IntervalThresholder< T >::BOOST_CONCEPT_ASSERT ( (boost::LessThanComparable< T >)  )
template<typename T>
bool DGtal::functors::IntervalThresholder< T >::operator() ( const Input aI) const
inline

Compares aI to @ myT.

Parameters
aIany input value
Returns
'true' or 'false' according to myPred

Definition at line 596 of file BasicFunctors.h.

References DGtal::functors::IntervalThresholder< T >::myPred.

597  {
598  return myPred(aI);
599  }

Field Documentation

template<typename T>
CombinedPredicate DGtal::functors::IntervalThresholder< T >::myPred
private

Combined predicate

Definition at line 612 of file BasicFunctors.h.

Referenced by DGtal::functors::IntervalThresholder< T >::operator()().

template<typename T>
Tlow DGtal::functors::IntervalThresholder< T >::myTlow
private

First thresholder

Definition at line 604 of file BasicFunctors.h.

template<typename T>
Tup DGtal::functors::IntervalThresholder< T >::myTup
private

Second thresholder

Definition at line 608 of file BasicFunctors.h.


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