X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=itk%2FclitkInvertVFFilter.h;h=8ad84a2e969c6ba75ed7da41dbe50676b4ab6a0b;hb=49a4b154c9a2af76b0f9143b4fabde0a4da6e798;hp=947f157e889e5041daec29144d0fdcc96933f8d4;hpb=9284f78523ef4469d086d04c1bcd791ce00575d1;p=clitk.git diff --git a/itk/clitkInvertVFFilter.h b/itk/clitkInvertVFFilter.h index 947f157..8ad84a2 100644 --- a/itk/clitkInvertVFFilter.h +++ b/itk/clitkInvertVFFilter.h @@ -1,7 +1,22 @@ +/*========================================================================= + 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 "clitkImageCommon.h" #include "itkImageToImageFilter.h" @@ -50,22 +65,38 @@ namespace clitk //Set Methods(inline) itkSetMacro( Verbose, bool); itkSetMacro( EdgePaddingValue, PixelType ); - void SetNumberOfThreads(unsigned int r ) +#if ITK_VERSION_MAJOR <= 4 + void SetNumberOfThreads(unsigned int r ) ITK_OVERRIDE +#else + void SetNumberOfWorkUnits(unsigned int r ) ITK_OVERRIDE +#endif { m_NumberOfThreadsIsGiven=true; +#if ITK_VERSION_MAJOR <= 4 m_NumberOfThreads=r; +#else + m_NumberOfWorkUnits=r; +#endif } 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; +#if ITK_VERSION_MAJOR <= 4 unsigned int m_NumberOfThreads; +#else + unsigned int m_NumberOfWorkUnits; +#endif PixelType m_EdgePaddingValue; bool m_ThreadSafe; };