X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=segmentation%2FclitkExtractPatientGenericFilter.txx;h=7bb97561c6d84b69f018434b93a4f392bc286a4e;hb=8b7afc421b64df4f4b0dab56a36d6d4cf7335d87;hp=a8fbad81e227e2360e1b34b74e71233c85cebdac;hpb=765020625fbc092d283e221e36c83e60a1844cb7;p=clitk.git diff --git a/segmentation/clitkExtractPatientGenericFilter.txx b/segmentation/clitkExtractPatientGenericFilter.txx index a8fbad8..7bb9756 100644 --- a/segmentation/clitkExtractPatientGenericFilter.txx +++ b/segmentation/clitkExtractPatientGenericFilter.txx @@ -47,10 +47,10 @@ template void clitk::ExtractPatientGenericFilter::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) SetInputFilename(mArgsInfo.input_arg); - if (mArgsInfo.output_given) AddOutputFilename(mArgsInfo.output_arg); + if (mArgsInfo.input_given) this->SetInputFilename(mArgsInfo.input_arg); + if (mArgsInfo.output_given) this->AddOutputFilename(mArgsInfo.output_arg); } //-------------------------------------------------------------------- @@ -75,6 +75,7 @@ SetOptionsFromArgsInfoToFilter(FilterType * f) f->SetUpperThreshold(mArgsInfo.upper_arg); f->SetLowerThreshold(mArgsInfo.lower_arg); + f->SetPrimaryOpeningRadius(mArgsInfo.openingRadius_arg); f->SetDecomposeAndReconstructDuringFirstStep(mArgsInfo.erode1_flag);