X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=tools%2FclitkComposeVFGenericFilter.h;h=4d9d9f5d71873380e403827c1f3c9e507fa80968;hb=ef03fc34db849c864b1ae7f50c8442e125834f84;hp=dcb913e0841bb775d62cedf53fd099ebe9c60cf8;hpb=1561fae3bf0756ba34e222cd1f189aac0087c62a;p=clitk.git diff --git a/tools/clitkComposeVFGenericFilter.h b/tools/clitkComposeVFGenericFilter.h index dcb913e..4d9d9f5 100644 --- a/tools/clitkComposeVFGenericFilter.h +++ b/tools/clitkComposeVFGenericFilter.h @@ -21,7 +21,6 @@ // clitk #include "clitkIO.h" -#include "clitkCommon.h" #include "clitkImageCommon.h" #include "clitkComposeVFFilter.h" @@ -52,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;} @@ -66,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; };