X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=segmentation%2FclitkExtractBonesGenericFilter.txx;h=47734300ea11185ba25dbcbb2509a8179a268944;hb=69dacfe0651ee24bef0f9e6b41171b9eec96fd2e;hp=ef18ae4b98c7d0575d290bb718ed2a872881fedf;hpb=573d80d0f7a17607d2ee883c21c940c0ba020282;p=clitk.git diff --git a/segmentation/clitkExtractBonesGenericFilter.txx b/segmentation/clitkExtractBonesGenericFilter.txx index ef18ae4..4773430 100644 --- a/segmentation/clitkExtractBonesGenericFilter.txx +++ b/segmentation/clitkExtractBonesGenericFilter.txx @@ -38,7 +38,7 @@ template template void clitk::ExtractBonesGenericFilter::InitializeImageType() { - ADD_IMAGE_TYPE(Dim, short); + //ADD_IMAGE_TYPE(Dim, short); // ADD_IMAGE_TYPE(Dim, int); ADD_IMAGE_TYPE(Dim, float); } @@ -50,10 +50,10 @@ template void clitk::ExtractBonesGenericFilter::SetArgsInfo(const ArgsInfoType & a) { mArgsInfo=a; - SetIOVerbose(mArgsInfo.verbose_flag); + this->SetIOVerbose(mArgsInfo.verbose_flag); if (mArgsInfo.imagetypes_flag) this->PrintAvailableImageTypes(); - if (mArgsInfo.input_given) AddInputFilename(mArgsInfo.input_arg); - if (mArgsInfo.output_given) AddOutputFilename(mArgsInfo.output_arg); + if (mArgsInfo.input_given) this->AddInputFilename(mArgsInfo.input_arg); + if (mArgsInfo.output_given) this->AddOutputFilename(mArgsInfo.output_arg); } //--------------------------------------------------------------------