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

itkOptBlackTopHatImageFilter.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Insight Segmentation & Registration Toolkit
00004   Module:    $RCSfile: itkOptBlackTopHatImageFilter.h,v $
00005   Language:  C++
00006   Date:      $Date: 2008-09-29 19:07:46 $
00007   Version:   $Revision: 1.3 $
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 #ifndef __itkOptBlackTopHatImageFilter_h
00018 #define __itkOptBlackTopHatImageFilter_h
00019 
00020 #include "itkKernelImageFilter.h"
00021 
00022 namespace itk {
00023 
00039 template<class TInputImage, class TOutputImage, class TKernel>
00040 class ITK_EXPORT BlackTopHatImageFilter : 
00041     public KernelImageFilter<TInputImage, TOutputImage, TKernel>
00042 {
00043 public:
00045   typedef BlackTopHatImageFilter                                Self;
00046   typedef KernelImageFilter<TInputImage, TOutputImage, TKernel> Superclass;
00047   typedef SmartPointer<Self>                                    Pointer;
00048   typedef SmartPointer<const Self>                              ConstPointer;
00049 
00051   typedef TInputImage                                           InputImageType;
00052   typedef TOutputImage                                          OutputImageType;
00053   typedef typename InputImageType::Pointer                      InputImagePointer;
00054   typedef typename InputImageType::ConstPointer                 InputImageConstPointer;
00055   typedef typename InputImageType::RegionType                   InputImageRegionType;
00056   typedef typename InputImageType::PixelType                    InputImagePixelType;
00057   typedef typename OutputImageType::Pointer                     OutputImagePointer;
00058   typedef typename OutputImageType::ConstPointer                OutputImageConstPointer;
00059   typedef typename OutputImageType::RegionType                  OutputImageRegionType;
00060   typedef typename OutputImageType::PixelType                   OutputImagePixelType;
00061 
00063   typedef TKernel KernelType;
00064 
00066   itkStaticConstMacro(InputImageDimension, unsigned int,
00067                       TInputImage::ImageDimension);
00068   itkStaticConstMacro(OutputImageDimension, unsigned int,
00069                       TOutputImage::ImageDimension);
00071 
00073   itkNewMacro(Self);  
00074 
00076   itkTypeMacro(BlackTopHatImageFilter, 
00077                KernelImageFilter);
00078 
00081   itkSetMacro(SafeBorder, bool);
00082   itkGetConstReferenceMacro(SafeBorder, bool);
00083   itkBooleanMacro(SafeBorder);
00085 
00087   enum {
00088     BASIC = 0,
00089     HISTO = 1,
00090     ANCHOR = 2,
00091     VHGW = 3
00092   } AlgorithmChoice;
00093 
00095   itkSetMacro(Algorithm, int);
00096   itkGetMacro(Algorithm, int);
00098 
00099   itkSetMacro(ForceAlgorithm, bool);
00100   itkGetConstReferenceMacro(ForceAlgorithm, bool);
00101   itkBooleanMacro(ForceAlgorithm);
00102 
00103 protected:
00104   BlackTopHatImageFilter();
00105   ~BlackTopHatImageFilter() {};
00106   void PrintSelf(std::ostream& os, Indent indent) const;
00107 
00108   void GenerateData();
00109   
00110 
00111 private:
00112   BlackTopHatImageFilter(const Self&); //purposely not implemented
00113   void operator=(const Self&); //purposely not implemented
00114 
00115   bool m_SafeBorder;
00116 
00117   int m_Algorithm;
00118 
00119   bool m_ForceAlgorithm;
00120 
00121 }; // end of class
00122 
00123 } // end namespace itk
00124   
00125 #ifndef ITK_MANUAL_INSTANTIATION
00126 #include "itkOptBlackTopHatImageFilter.txx"
00127 #endif
00128 
00129 #endif
00130 

Generated at Wed Nov 5 23:17:46 2008 for ITK by doxygen 1.5.1 written by Dimitri van Heesch, © 1997-2000