aimstil  5.0.5
ImageFunctorTraits.h
Go to the documentation of this file.
1 #ifndef TIL_IMAGE_FUNCTOR_TRAITS_H
2 #define TIL_IMAGE_FUNCTOR_TRAITS_H
3 
4 // include from TIL library
5 #include "til/til_common.h"
7 #include "til/TExprMacros.h"
8 
9 namespace til {
10 namespace expr {
11 namespace functor {
12 
26  // TODO: do we really need to distinguish FunctorTraits and
27  // ImageFUnctorTraits?
28 
29  //template < typename ImageFunctor > struct ImageFunctorTraits;
30 
31  template < class Functor > struct FunctorTraits;
32 
33  template < class _TPixel, class _TNeighborhood >
34  struct FunctorTraits<IsIsolated<_TPixel, _TNeighborhood> >
35  {
36  template < typename T > struct TypeStruct
37  {
38  typedef bool Type;
39  };
40  };
41 
42 } // namespace functor
43 } // namespace expr
44 } // namespace til
45 
46 
47 #endif
48 
Belongs to package Box Do not include directly, include til/Box.h instead.
Definition: Accumulator.h:10
General macros, definitions and functions.
Some macros to ease the otherwise tedious and unreadable declaration of template expression classes...
Traits for image functors.