/*========================================================================= 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 CLITKEXTRACTMEDIASTINUMSGENERICFILTER_TXX #define CLITKEXTRACTMEDIASTINUMSGENERICFILTER_TXX #include "clitkImageCommon.h" //-------------------------------------------------------------------- template clitk::ExtractMediastinumGenericFilter::ExtractMediastinumGenericFilter(): ImageToImageGenericFilter("ExtractMediastinum") { // Default values cmdline_parser_clitkExtractMediastinum_init(&mArgsInfo); InitializeImageType<3>(); } //-------------------------------------------------------------------- //-------------------------------------------------------------------- template template void clitk::ExtractMediastinumGenericFilter::InitializeImageType() { ADD_IMAGE_TYPE(Dim, short); // ADD_IMAGE_TYPE(Dim, short); // ADD_IMAGE_TYPE(Dim, int); // ADD_IMAGE_TYPE(Dim, float); } //-------------------------------------------------------------------- //-------------------------------------------------------------------- template void clitk::ExtractMediastinumGenericFilter::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.patient_given) AddInputFilename(mArgsInfo.patient_arg); //if (mArgsInfo.lung_given) AddInputFilename(mArgsInfo.lung_arg); //if (mArgsInfo.bones_given) AddInputFilename(mArgsInfo.bones_arg); //if (mArgsInfo.trachea_given) AddInputFilename(mArgsInfo.trachea_arg); if (mArgsInfo.output_given) AddOutputFilename(mArgsInfo.output_arg); } //-------------------------------------------------------------------- //-------------------------------------------------------------------- // Update with the number of dimensions and the pixeltype //-------------------------------------------------------------------- template template void clitk::ExtractMediastinumGenericFilter::UpdateWithInputImageType() { // Reading input typename ImageType::Pointer input = this->template GetInput(0); // typename ImageType::Pointer patient = this->template GetInput(0); // typename ImageType::Pointer lung = this->template GetInput(1); // typename ImageType::Pointer bones = this->template GetInput(2); // typename ImageType::Pointer trachea = this->template GetInput(3); // Create filter typedef clitk::ExtractMediastinumFilter FilterType; typename FilterType::Pointer filter = FilterType::New(); // Set global Options filter->SetInput(input); // filter->SetInputPatientLabelImage(patient, mArgsInfo.patientBG_arg); // filter->SetInputLungLabelImage(lung, mArgsInfo.lungBG_arg, mArgsInfo.lungRight_arg, mArgsInfo.lungLeft_arg); // filter->SetInputBonesLabelImage(bones, mArgsInfo.bonesBG_arg); filter->SetOutputMediastinumFilename(mArgsInfo.output_arg); filter->SetArgsInfo(mArgsInfo); // Go ! filter->Update(); // Write/Save results typename FilterType::MaskImageType::Pointer output = filter->GetOutput(); this->template SetNextOutput(output); } //-------------------------------------------------------------------- #endif //#define CLITKEXTRACTMEDIASTINUMSGENERICFILTER_TXX