]> Creatis software - clitk.git/blobdiff - tools/clitkMedianImageGenericFilter.h
QVTKOpenGLNativeWidget is available from VTK8.2
[clitk.git] / tools / clitkMedianImageGenericFilter.h
old mode 100755 (executable)
new mode 100644 (file)
index e4d68b6..f6dc478
@@ -1,3 +1,20 @@
+/*=========================================================================
+  Program:   vv                     http://www.creatis.insa-lyon.fr/rio/vv
+
+  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
+
+  This software is distributed WITHOUT ANY WARRANTY; without even
+  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+  PURPOSE.  See the copyright notices for more information.
+
+  It is distributed under dual licence
+
+  - BSD        See included LICENSE.txt file
+  - CeCILL-B   http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
+===========================================================================*/
 /*=========================================================================
 
   Program:   clitk
@@ -7,7 +24,7 @@
   Version:   $Revision: 1.1 $
   Author :  Bharath Navalpakkam <Bharath.Navalpakkam@creatis.insa-lyon.fr>
   Copyright (C) 2010
-  Léon Bérard cancer center    http://oncora1.lyon.fnclcc.fr
+  Léon Bérard cancer center    http://www.centreleonberard.fr
   CREATIS                      http://www.creatis.insa-lyon.fr
 
   This program is free software: you can redistribute it and/or modify
@@ -44,10 +61,11 @@ namespace clitk
   public:
 
     //--------------------------------------------------------------------
-   MedianImageGenericFilter();
+    MedianImageGenericFilter();
 
     //--------------------------------------------------------------------
-    typedef MedianImageGenericFilter         Self;
+    typedef MedianImageGenericFilter           Self;
+    typedef ImageToImageGenericFilter<MedianImageGenericFilter<args_info_type> > Superclass;
     typedef itk::SmartPointer<Self>            Pointer;
     typedef itk::SmartPointer<const Self>      ConstPointer;
    
@@ -64,15 +82,15 @@ namespace clitk
     // Main function called each time the filter is updated
     template<class InputImageType>  
     void UpdateWithInputImageType();
-    
-
 
   protected:
     template<unsigned int Dim> void InitializeImageType();
-    
     args_info_type mArgsInfo;
-    
+
+  private:
+    MedianImageGenericFilter(const Self&); //purposely not implemented
+    void operator=(const Self&); //purposely not implemented
+
   }; // end class
   //--------------------------------------------------------------------