/*========================================================================= 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://oncora1.lyon.fnclcc.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 CLITKBOOLEANOPERATORLABELIMAGEGENERICFILTER_TXX #define CLITKBOOLEANOPERATORLABELIMAGEGENERICFILTER_TXX #include "clitkImageCommon.h" //-------------------------------------------------------------------- template clitk::BooleanOperatorLabelImageGenericFilter::BooleanOperatorLabelImageGenericFilter(): ImageToImageGenericFilter("BooleanOperatorLabelImage") { // Default values cmdline_parser_clitkBool_init(&mArgsInfo); InitializeImageType<3>(); // Only for 3D images } //-------------------------------------------------------------------- //-------------------------------------------------------------------- template template void clitk::BooleanOperatorLabelImageGenericFilter::InitializeImageType() { ADD_IMAGE_TYPE(Dim, uchar); // Can add float later } //-------------------------------------------------------------------- //-------------------------------------------------------------------- template void clitk::BooleanOperatorLabelImageGenericFilter::SetArgsInfo(const ArgsInfoType & a) { mArgsInfo=a; SetIOVerbose(mArgsInfo.verbose_flag); if (mArgsInfo.imagetypes_flag) this->PrintAvailableImageTypes(); if (mArgsInfo.input_given) AddInputFilename(mArgsInfo.input_arg); if (mArgsInfo.input2_given) AddInputFilename(mArgsInfo.input2_arg); } //-------------------------------------------------------------------- //-------------------------------------------------------------------- template template void clitk::BooleanOperatorLabelImageGenericFilter:: SetOptionsFromArgsInfoToFilter(FilterType * f) { // Operation type f->SetOperationType(typename FilterType::OperationTypeEnumeration(mArgsInfo.type_arg)); // Output filename this->AddOutputFilename(mArgsInfo.output_arg); } //-------------------------------------------------------------------- //-------------------------------------------------------------------- // Update with the number of dimensions and the pixeltype //-------------------------------------------------------------------- template template void clitk::BooleanOperatorLabelImageGenericFilter::UpdateWithInputImageType() { // Reading input typename ImageType::Pointer input1 = this->template GetInput(0); typename ImageType::Pointer input2 = this->template GetInput(1); // Create filter typedef clitk::BooleanOperatorLabelImageFilter FilterType; typename FilterType::Pointer filter = FilterType::New(); // Set global Options filter->SetInput1(input1); filter->SetInput2(input2); SetOptionsFromArgsInfoToFilter(filter); // Go ! filter->Update(); // Write/Save results typename ImageType::Pointer output = filter->GetOutput(); this->template SetNextOutput(output); } //-------------------------------------------------------------------- #endif //#define CLITKBOOLEANOPERATORLABELIMAGEGENERICFILTER_TXX