]> Creatis software - clitk.git/blobdiff - itk/clitkInvertVFFilter.h
Merge branch 'master' of git.creatis.insa-lyon.fr:clitk
[clitk.git] / itk / clitkInvertVFFilter.h
index 039dc9197aefac257dae7ae434c83f3614176cde..8475241a3171d1b4edb2a8a50c1b5b8a5a92211d 100644 (file)
@@ -1,8 +1,23 @@
+/*=========================================================================
+  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
+===========================================================================**/
 #ifndef __clitkInvertVFFilter_h
 #define __clitkInvertVFFilter_h
-
-//clitk include
-#include "clitkIOCommon.h"
+#include "clitkImageCommon.h"
 
 #include "itkImageToImageFilter.h"
 #include "itkImage.h"
@@ -56,15 +71,19 @@ namespace clitk
       m_NumberOfThreads=r;
     }
     itkSetMacro(ThreadSafe, bool);
+    itkSetMacro(OutputSpacing, SpacingType);
+    itkSetMacro(OutputSize, SizeType);
 
   
   protected:
     InvertVFFilter();
     ~InvertVFFilter() {};
     void GenerateData( );
-   
+    
     bool m_Verbose;
     bool m_NumberOfThreadsIsGiven;
+    SpacingType m_OutputSpacing;
+    SizeType m_OutputSize;
     unsigned int m_NumberOfThreads;
     PixelType m_EdgePaddingValue;
     bool m_ThreadSafe;