X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=itk%2FclitkInvertVFFilter.h;h=52edcd922238be7a444694d062d66b593b2df5c1;hb=c8b7a0550e22bf11fd40320d3dddc56f11ea7a8c;hp=8b16e307600f4e6cc08e042cf6e4237509654a33;hpb=0083c3fb2c66812489631c7551709d121de51625;p=clitk.git diff --git a/itk/clitkInvertVFFilter.h b/itk/clitkInvertVFFilter.h index 8b16e30..52edcd9 100644 --- a/itk/clitkInvertVFFilter.h +++ b/itk/clitkInvertVFFilter.h @@ -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 +===========================================================================**/ #ifndef __clitkInvertVFFilter_h #define __clitkInvertVFFilter_h #include "clitkImageCommon.h" @@ -48,21 +65,25 @@ namespace clitk //Set Methods(inline) itkSetMacro( Verbose, bool); itkSetMacro( EdgePaddingValue, PixelType ); - void SetNumberOfThreads(unsigned int r ) + void SetNumberOfThreads(unsigned int r ) ITK_OVERRIDE { m_NumberOfThreadsIsGiven=true; m_NumberOfThreads=r; } itkSetMacro(ThreadSafe, bool); + itkSetMacro(OutputSpacing, SpacingType); + itkSetMacro(OutputSize, SizeType); protected: InvertVFFilter(); ~InvertVFFilter() {}; - void GenerateData( ); - + void GenerateData( ) ITK_OVERRIDE; + bool m_Verbose; bool m_NumberOfThreadsIsGiven; + SpacingType m_OutputSpacing; + SizeType m_OutputSize; unsigned int m_NumberOfThreads; PixelType m_EdgePaddingValue; bool m_ThreadSafe;