]> Creatis software - clitk.git/blob - segmentation/clitkExtractLungGenericFilter.txx
changes in license header
[clitk.git] / segmentation / clitkExtractLungGenericFilter.txx
1 /*=========================================================================
2   Program:   vv                     http://www.creatis.insa-lyon.fr/rio/vv
3
4   Authors belong to: 
5   - University of LYON              http://www.universite-lyon.fr/
6   - Léon Bérard cancer center       http://www.centreleonberard.fr
7   - CREATIS CNRS laboratory         http://www.creatis.insa-lyon.fr
8
9   This software is distributed WITHOUT ANY WARRANTY; without even
10   the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
11   PURPOSE.  See the copyright notices for more information.
12
13   It is distributed under dual licence
14
15   - BSD        See included LICENSE.txt file
16   - CeCILL-B   http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
17   ===========================================================================**/
18
19 #ifndef CLITKEXTRACTLUNGSGENERICFILTER_TXX
20 #define CLITKEXTRACTLUNGSGENERICFILTER_TXX
21
22 #include "clitkImageCommon.h"
23   
24 //--------------------------------------------------------------------
25 template<class ArgsInfoType>
26 clitk::ExtractLungGenericFilter<ArgsInfoType>::ExtractLungGenericFilter():
27   ImageToImageGenericFilter<Self>("ExtractLung") 
28 {
29   this->SetFilterBase(NULL);
30   // Default values
31   cmdline_parser_clitkExtractLung_init(&mArgsInfo);
32   InitializeImageType<3>();
33 }
34 //--------------------------------------------------------------------
35
36
37 //--------------------------------------------------------------------
38 template<class ArgsInfoType>
39 template<unsigned int Dim>
40 void clitk::ExtractLungGenericFilter<ArgsInfoType>::InitializeImageType() 
41 {  
42   ADD_IMAGE_TYPE(Dim, short);
43   // ADD_IMAGE_TYPE(Dim, int);
44   // ADD_IMAGE_TYPE(Dim, float);
45 }
46 //--------------------------------------------------------------------
47   
48
49 //--------------------------------------------------------------------
50 template<class ArgsInfoType>
51 void clitk::ExtractLungGenericFilter<ArgsInfoType>::SetArgsInfo(const ArgsInfoType & a) 
52 {
53   mArgsInfo=a;
54   SetIOVerbose(mArgsInfo.verbose_flag);
55   if (mArgsInfo.imagetypes_flag) this->PrintAvailableImageTypes();
56   if (mArgsInfo.input_given)   AddInputFilename(mArgsInfo.input_arg);
57   if (mArgsInfo.output_given)  AddOutputFilename(mArgsInfo.output_arg);
58   if (mArgsInfo.outputTrachea_given)  AddOutputFilename(mArgsInfo.outputTrachea_arg);
59 }
60 //--------------------------------------------------------------------
61
62
63 //--------------------------------------------------------------------
64 template<class ArgsInfoType>
65 template<class FilterType>
66 void clitk::ExtractLungGenericFilter<ArgsInfoType>::
67 SetOptionsFromArgsInfoToFilter(FilterType * f) 
68 {
69   //f->SetVerboseFlag(mArgsInfo.verbose_flag);
70   f->SetVerboseOptionFlag(mArgsInfo.verboseOption_flag);
71   f->SetVerboseStepFlag(mArgsInfo.verboseStep_flag);
72   f->SetWriteStepFlag(mArgsInfo.writeStep_flag);
73   f->SetVerboseWarningFlag(!mArgsInfo.verboseWarningOff_flag);
74   f->SetVerboseMemoryFlag(mArgsInfo.verboseMemory_flag);
75
76   if (mArgsInfo.afdb_given)
77     f->SetAFDBFilename(mArgsInfo.afdb_arg);
78   f->SetOutputLungFilename(mArgsInfo.output_arg);
79   f->SetOutputTracheaFilename(mArgsInfo.outputTrachea_arg);
80   
81   f->SetUpperThreshold(mArgsInfo.upper_arg);
82   f->SetLowerThreshold(mArgsInfo.lower_arg);
83   
84   f->SetNumberOfSlicesToSkipBeforeSearchingSeed(mArgsInfo.skipslices_arg);
85
86   f->SetTracheaVolumeMustBeCheckedFlag(!mArgsInfo.doNotCheckTracheaVolume_flag);
87   f->SetVerboseRegionGrowingFlag(mArgsInfo.verboseRG_flag);
88
89   f->SetUpperThresholdForTrachea(mArgsInfo.upperThresholdForTrachea_arg);
90   f->SetMultiplierForTrachea(mArgsInfo.multiplierForTrachea_arg);
91   f->SetThresholdStepSizeForTrachea(mArgsInfo.thresholdStepSizeForTrachea_arg);
92
93   typename FilterType::InputImageIndexType s;
94   if (mArgsInfo.seed_given) {
95     ConvertOptionMacro(mArgsInfo.seed, s, 3, false);
96   f->AddSeed(s);
97   }
98
99   f->SetMinimalComponentSize(mArgsInfo.minSize_arg);
100   f->SetNumberOfHistogramBins(mArgsInfo.bins_arg);
101   f->SetRadiusForTrachea(mArgsInfo.radius_arg);
102   
103   f->SetOpenCloseFlag(mArgsInfo.openclose_flag);
104   f->SetOpenCloseRadius(mArgsInfo.opencloseRadius_arg);
105   
106   if (mArgsInfo.doNotFillHoles_given)
107     f->SetFillHolesFlag(false);
108   else
109     f->SetFillHolesFlag(true);
110 }
111 //--------------------------------------------------------------------
112
113
114 //--------------------------------------------------------------------
115 // Update with the number of dimensions and the pixeltype
116 //--------------------------------------------------------------------
117 template<class ArgsInfoType>
118 template<class ImageType>
119 void clitk::ExtractLungGenericFilter<ArgsInfoType>::UpdateWithInputImageType() 
120
121   // Mask & output image type
122   typedef itk::Image<uchar, ImageType::ImageDimension> MaskImageType;
123
124   // Reading input
125   typename ImageType::Pointer input = this->template GetInput<ImageType>(0);
126
127   // Create filter
128   typedef clitk::ExtractLungFilter<ImageType> FilterType;
129   typename FilterType::Pointer filter = FilterType::New();
130
131   // Set the filter (needed for example for threaded monitoring)
132   this->SetFilterBase(filter);
133     
134   // Set global Options 
135   filter->SetInput(input);
136   SetOptionsFromArgsInfoToFilter<FilterType>(filter);
137
138   // Go !
139   filter->Update();
140   
141   // Write/Save results
142   typename MaskImageType::Pointer output = filter->GetOutput();
143   this->template SetNextOutput<MaskImageType>(output); 
144   this->template SetNextOutput<typename FilterType::MaskImageType>(filter->GetTracheaImage()); 
145 }
146 //--------------------------------------------------------------------
147
148 #endif //#define CLITKEXTRACTLUNGSGENERICFILTER_TXX