Main Page   Groups   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Concepts

itkValuedRegionalMaximaImageFilter.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Insight Segmentation & Registration Toolkit
00004   Module:    $RCSfile: itkValuedRegionalMaximaImageFilter.h,v $
00005   Language:  C++
00006   Date:      $Date: 2007/01/25 14:52:51 $
00007   Version:   $Revision: 1.8 $
00008 
00009   Copyright (c) Insight Software Consortium. All rights reserved.
00010   See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
00011 
00012      This software is distributed WITHOUT ANY WARRANTY; without even 
00013      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
00014      PURPOSE.  See the above copyright notices for more information.
00015 
00016 =========================================================================*/
00017 
00018 #ifndef __itkValuedRegionalMaximaImageFilter_h
00019 #define __itkValuedRegionalMaximaImageFilter_h
00020 
00021 #include "itkValuedRegionalExtremaImageFilter.h"
00022 #include "itkNumericTraits.h"
00023 #include "itkConceptChecking.h"
00024 
00025 namespace itk {
00048 template <class TInputImage, class TOutputImage>
00049 class ITK_EXPORT ValuedRegionalMaximaImageFilter :
00050     public
00051     ValuedRegionalExtremaImageFilter<TInputImage, TOutputImage,
00052              std::greater<typename TInputImage::PixelType>,
00053              std::greater<typename TOutputImage::PixelType>  >
00054 {
00055 public:
00056   typedef ValuedRegionalMaximaImageFilter Self;
00057 
00058   typedef ValuedRegionalExtremaImageFilter<TInputImage, TOutputImage,
00059              std::greater<typename TInputImage::PixelType>,
00060              std::greater<typename TOutputImage::PixelType> > Superclass;
00061 
00062   typedef SmartPointer<Self>                                  Pointer;
00063   typedef SmartPointer<const Self>                            ConstPointer;
00064 
00065 
00066   typedef TInputImage                                    InputImageType;
00067   typedef typename InputImageType::PixelType             InputImagePixelType;
00068 
00070   itkNewMacro(Self);
00071 
00072 #ifdef ITK_USE_CONCEPT_CHECKING
00073 
00074   itkConceptMacro(InputPixelTypeComparable,
00075     (Concept::GreaterThanComparable<InputImagePixelType>));
00076   itkConceptMacro(InputHasPixelTraitsCheck,
00077     (Concept::HasPixelTraits<InputImagePixelType>));
00078   itkConceptMacro(InputHasNumericTraitsCheck,
00079     (Concept::HasNumericTraits<InputImagePixelType>));
00080 
00082 #endif
00083 
00084 protected:
00085   ValuedRegionalMaximaImageFilter() 
00086     {
00087     SetMarkerValue( 
00088       NumericTraits<ITK_TYPENAME TOutputImage::PixelType>::NonpositiveMin());
00089     }
00090   virtual ~ValuedRegionalMaximaImageFilter() {}
00091 
00092 private:
00093   ValuedRegionalMaximaImageFilter(const Self&); //purposely not implemented
00094   void operator=(const Self&); //purposely not implemented
00095 
00096 }; // end ValuedRegionalMaximaImageFilter
00097 
00098 } //end namespace itk
00099 
00100 #endif
00101 

Generated at Sun Sep 23 14:30:24 2007 for ITK by doxygen 1.5.1 written by Dimitri van Heesch, © 1997-2000