]> Creatis software - clitk.git/commitdiff
Remove useless include and trailing whitespaces
authorVivien Delmon <vivien.delmon@creatis.insa-lyon.fr>
Mon, 28 Oct 2013 12:23:45 +0000 (13:23 +0100)
committerVivien Delmon <vivien.delmon@creatis.insa-lyon.fr>
Mon, 28 Oct 2013 12:23:45 +0000 (13:23 +0100)
segmentation/clitkMorphoMathFilter.h

index f86c2ba7e082ceb63200a588999a0f43e42fd301..a63400678ac010303277019dcc4e15b9439047b9 100644 (file)
@@ -1,7 +1,7 @@
 /*=========================================================================
   Program:   vv                     http://www.creatis.insa-lyon.fr/rio/vv
 
-  Authors belong to: 
+  Authors belong to:
   - University of LYON              http://www.universite-lyon.fr/
   - Léon Bérard cancer center       http://www.centreleonberard.fr
   - CREATIS CNRS laboratory         http://www.creatis.insa-lyon.fr
@@ -22,7 +22,6 @@
 // clitk include
 #include "clitkIO.h"
 #include "clitkImageCommon.h"
-#include "clitkMorphoMath_ggo.h"
 #include "clitkConditionalBinaryErodeImageFilter.h"
 #include "clitkConditionalBinaryDilateImageFilter.h"
 
@@ -39,12 +38,12 @@ namespace clitk {
 
   //--------------------------------------------------------------------
   template<class ImageType>
-  class ITK_EXPORT MorphoMathFilter: 
-    public clitk::FilterBase, 
-    public itk::ImageToImageFilter<ImageType, ImageType> 
+  class ITK_EXPORT MorphoMathFilter:
+    public clitk::FilterBase,
+    public itk::ImageToImageFilter<ImageType, ImageType>
   {
-    
-  public: 
+
+  public:
     /** Standard class typedefs. */
     typedef itk::ImageToImageFilter<ImageType, ImageType> Superclass;
     typedef MorphoMathFilter<ImageType>                   Self;
@@ -52,8 +51,8 @@ namespace clitk {
     typedef itk::SmartPointer<const Self>                 ConstPointer;
 
     /** Method for creation through the object factory. */
-    itkNewMacro(Self);  
-    
+    itkNewMacro(Self);
+
     /** Run-time type information (and related methods). */
     itkTypeMacro(AddRelativePositionConstraintToLabelImageFilter, ImageToImageFilter);
     FILTERBASE_INIT;
@@ -61,7 +60,7 @@ namespace clitk {
     /** Some convenient typedefs. */
     typedef typename ImageType::ConstPointer ImageConstPointer;
     typedef typename ImageType::Pointer      ImagePointer;
-    typedef typename ImageType::RegionType   RegionType; 
+    typedef typename ImageType::RegionType   RegionType;
     typedef typename ImageType::PixelType    PixelType;
     typedef typename ImageType::SpacingType  SpacingType;
     typedef typename ImageType::SizeType     SizeType;
@@ -69,17 +68,17 @@ namespace clitk {
     typedef typename ImageType::PointType    PointType;
     typedef float InternalPixelType;
     typedef itk::Image<InternalPixelType, ImageType::ImageDimension> InternalImageType;
-    
+
     /** ImageDimension constants */
     itkStaticConstMacro(ImageDimension, unsigned int, ImageType::ImageDimension);
     typedef itk::Image<float, ImageDimension> FloatImageType;
 
     /** Operation types */
     typedef enum { Erode     = 0, Dilate     = 1,
-                   Close     = 2, Open       = 3, 
+                   Close     = 2, Open       = 3,
                    CondErode = 4, CondDilate = 5
     } OperationTypeEnumeration;
-    
+
     /** Options */
     itkGetConstMacro(VerboseFlag, bool);
     itkSetMacro(VerboseFlag, bool);
@@ -92,7 +91,7 @@ namespace clitk {
     itkSetMacro(ForegroundValue, PixelType);
 
     void SetOperationType(int type);
-    
+
     itkGetConstMacro(RadiusInMM, PointType);
     void SetRadiusInMM(PointType & p);
 
@@ -103,11 +102,11 @@ namespace clitk {
     itkGetConstMacro(BoundaryToForegroundFlag, bool);
     itkSetMacro(BoundaryToForegroundFlag, bool);
     itkBooleanMacro(BoundaryToForegroundFlag);
-    
+
     itkGetConstMacro(ExtendSupportFlag, bool);
     itkSetMacro(ExtendSupportFlag, bool);
     itkBooleanMacro(ExtendSupportFlag);
-    
+
   protected:
     MorphoMathFilter();
     virtual ~MorphoMathFilter();
@@ -132,10 +131,10 @@ namespace clitk {
     MorphoMathFilter(const Self&); //purposely not implemented
     void operator=(const Self&); //purposely not implemented
   };
-  
+
 } // end namespace clitk
 #ifndef ITK_MANUAL_INSTANTIATION
 #include "clitkMorphoMathFilter.txx"
 #endif
-  
+
 #endif //#define CLITKMORPHOMATHFILTER_H