DGtal 1.3.0
Loading...
Searching...
No Matches
Public Types | Public Member Functions | Private Attributes
DGtal::functors::Thresholder< T, true, true > Struct Template Reference

#include <DGtal/base/BasicFunctors.h>

Public Types

typedef T Input
 

Public Member Functions

 BOOST_CONCEPT_ASSERT ((boost::EqualityComparable< T >))
 
 BOOST_CONCEPT_ASSERT ((boost::LessThanComparable< T >))
 
 Thresholder (const Input &aT=0)
 
bool operator() (const Input &aI) const
 

Private Attributes

Input myT
 

Detailed Description

template<typename T>
struct DGtal::functors::Thresholder< T, true, true >

Definition at line 590 of file BasicFunctors.h.

Member Typedef Documentation

◆ Input

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

Definition at line 596 of file BasicFunctors.h.

Constructor & Destructor Documentation

◆ Thresholder()

template<typename T >
DGtal::functors::Thresholder< T, true, true >::Thresholder ( const Input aT = 0)
inline

Definition at line 598 of file BasicFunctors.h.

Member Function Documentation

◆ BOOST_CONCEPT_ASSERT() [1/2]

template<typename T >
DGtal::functors::Thresholder< T, true, true >::BOOST_CONCEPT_ASSERT ( (boost::EqualityComparable< T >)  )

◆ BOOST_CONCEPT_ASSERT() [2/2]

template<typename T >
DGtal::functors::Thresholder< T, true, true >::BOOST_CONCEPT_ASSERT ( (boost::LessThanComparable< T >)  )

◆ operator()()

template<typename T >
bool DGtal::functors::Thresholder< T, true, true >::operator() ( const Input aI) const
inline

Definition at line 600 of file BasicFunctors.h.

600 {
601 std::less_equal<Input> c;
602 return c(aI,myT);
603 }

References DGtal::functors::Thresholder< T, isLower, isEqual >::myT.

Field Documentation

◆ myT

template<typename T >
Input DGtal::functors::Thresholder< T, true, true >::myT
private

Definition at line 606 of file BasicFunctors.h.


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