X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=tools%2FclitkComposeVFGenericFilter.h;h=4d9d9f5d71873380e403827c1f3c9e507fa80968;hb=266d6bcb4df9306d4c93cd0229cb59d7811d9825;hp=50ee16b0e408bd700170cb60fe952ef541558049;hpb=b90df15e193f919926bd6688e4f3a774ba84373d;p=clitk.git diff --git a/tools/clitkComposeVFGenericFilter.h b/tools/clitkComposeVFGenericFilter.h old mode 100755 new mode 100644 index 50ee16b..4d9d9f5 --- a/tools/clitkComposeVFGenericFilter.h +++ b/tools/clitkComposeVFGenericFilter.h @@ -3,7 +3,7 @@ Authors belong to: - University of LYON http://www.universite-lyon.fr/ - - Léon Bérard cancer center http://oncora1.lyon.fnclcc.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 @@ -14,7 +14,7 @@ - BSD See included LICENSE.txt file - CeCILL-B http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html -======================================================================-====*/ +===========================================================================**/ #ifndef __clitkComposeVFGenericFilter_h #define __clitkComposeVFGenericFilter_h @@ -51,6 +51,8 @@ namespace clitk void SetInput1(const std::string m){m_InputName1=m;} void SetInput2(const std::string m){m_InputName2=m;} void SetOutput(const std::string m){m_OutputName=m;} + void SetLikeImage(const std::string like){m_LikeImage=like;} + void SetInputType(int t){m_Type=t;} void SetVerbose(const bool m){m_Verbose=m;} @@ -65,10 +67,13 @@ namespace clitk //Templated members template void UpdateWithDim(std::string PixelType); template void UpdateWithDimAndPixelType(); - + std::string m_InputName1; std::string m_InputName2; std::string m_OutputName; + std::string m_LikeImage; + int m_Type; + bool m_Verbose; };