]> Creatis software - clitk.git/blob - segmentation/clitkExtractLymphStationsGenericFilter.txx
small improvement for S8
[clitk.git] / segmentation / clitkExtractLymphStationsGenericFilter.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://oncora1.lyon.fnclcc.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 CLITKEXTRACTLYMPHSTATIONSSGENERICFILTER_TXX
20 #define CLITKEXTRACTLYMPHSTATIONSSGENERICFILTER_TXX
21
22 #include "clitkImageCommon.h"
23   
24 //--------------------------------------------------------------------
25 template<class ArgsInfoType>
26 clitk::ExtractLymphStationsGenericFilter<ArgsInfoType>::ExtractLymphStationsGenericFilter():
27   ImageToImageGenericFilter<Self>("ExtractLymphStations") 
28 {
29   // Default values
30   cmdline_parser_clitkExtractLymphStations_init(&mArgsInfo);
31   InitializeImageType<3>(); // Only for 3D images
32 }
33 //--------------------------------------------------------------------
34
35
36 //--------------------------------------------------------------------
37 template<class ArgsInfoType>
38 template<unsigned int Dim>
39 void clitk::ExtractLymphStationsGenericFilter<ArgsInfoType>::InitializeImageType() 
40 {  
41   ADD_IMAGE_TYPE(Dim, short); // Can add float later
42 }
43 //--------------------------------------------------------------------
44   
45
46 //--------------------------------------------------------------------
47 template<class ArgsInfoType>
48 void clitk::ExtractLymphStationsGenericFilter<ArgsInfoType>::SetArgsInfo(const ArgsInfoType & a) 
49 {
50   mArgsInfo=a;
51   SetIOVerbose(mArgsInfo.verbose_flag);
52   if (mArgsInfo.imagetypes_flag) this->PrintAvailableImageTypes();
53   if (mArgsInfo.input_given) AddInputFilename(mArgsInfo.input_arg);
54   if (mArgsInfo.output_given) AddOutputFilename(mArgsInfo.output_arg);
55 }
56 //--------------------------------------------------------------------
57
58
59 //--------------------------------------------------------------------
60 template<class ArgsInfoType>
61 template<class FilterType>
62 void 
63 clitk::ExtractLymphStationsGenericFilter<ArgsInfoType>::
64 SetOptionsFromArgsInfoToFilter(FilterType * f)
65 {
66   f->SetVerboseOptionFlag(mArgsInfo.verbose_flag);
67   f->SetVerboseStepFlag(mArgsInfo.verboseStep_flag);
68   f->SetWriteStepFlag(mArgsInfo.writeStep_flag);
69   f->SetVerboseMemoryFlag(mArgsInfo.verboseMemory_flag);
70   f->SetAFDBFilename(mArgsInfo.afdb_arg);  
71   f->SetDistanceMaxToAnteriorPartOfTheSpine(mArgsInfo.maxAntSpine_arg);
72   f->SetFuzzyThresholdForS8(mArgsInfo.fuzzyThresholdForS8_arg);
73   f->SetInjectedThresholdForS8(mArgsInfo.injectedThresholdForS8_arg);
74
75   // Check multiple options for radius dilatation
76   /*
77     typename FilterType::MaskImagePointType p;
78     SetMultipleOptionMacro(mArgsInfo, esophagusDilatation, 3, p);
79     default ? = set before
80     exception if fail
81    */
82   typename FilterType::MaskImagePointType p;
83   p[0] = 7; p[1] = 5; p[2] = 0; // default value
84   if (mArgsInfo.esophagusDilatationForAnt_given == 3) {
85     for(uint i=0; i<3; i++)
86       p[i] = mArgsInfo.esophagusDilatationForAnt_arg[i];
87   }
88   else {
89     if (mArgsInfo.esophagusDilatationForAnt_given == 1) {
90       for(uint i=0; i<3; i++)
91         p[i] = mArgsInfo.esophagusDilatationForAnt_arg[0];
92     }
93   }
94   f->SetEsophagusDiltationForAnt(p);
95   
96   p[0] = 5; p[1] = 10; p[2] = 1; // default value
97   if (mArgsInfo.esophagusDilatationForRight_given == 3) {
98     for(uint i=0; i<3; i++)
99       p[i] = mArgsInfo.esophagusDilatationForRight_arg[i];
100   }
101   else {
102     if (mArgsInfo.esophagusDilatationForRight_given == 1) {
103       for(uint i=0; i<3; i++)
104         p[i] = mArgsInfo.esophagusDilatationForRight_arg[0];
105     }
106   }
107   f->SetEsophagusDiltationForRight(p);  
108   
109   for(uint i=0; i<mArgsInfo.station_given; i++)
110     f->AddComputeStation(mArgsInfo.station_arg[i]);
111 }
112 //--------------------------------------------------------------------
113
114
115 //--------------------------------------------------------------------
116 // Update with the number of dimensions and the pixeltype
117 //--------------------------------------------------------------------
118 template<class ArgsInfoType>
119 template<class ImageType>
120 void clitk::ExtractLymphStationsGenericFilter<ArgsInfoType>::UpdateWithInputImageType() 
121
122   // Reading input
123   typename ImageType::Pointer input = this->template GetInput<ImageType>(0);
124
125   // Create filter
126   typedef clitk::ExtractLymphStationsFilter<ImageType> FilterType;
127   typename FilterType::Pointer filter = FilterType::New();
128     
129   // Set global Options 
130   filter->SetInput(input);
131   SetOptionsFromArgsInfoToFilter<FilterType>(filter);
132
133   // Go !
134   filter->Update();
135
136   // Write/Save results
137   typedef uchar MaskImagePixelType;
138   typedef itk::Image<MaskImagePixelType, 3> OutputImageType;
139   typename OutputImageType::Pointer output = filter->GetOutput();
140   this->template SetNextOutput<OutputImageType>(output); 
141 }
142 //--------------------------------------------------------------------
143
144 #endif //#define CLITKEXTRACTLYMPHSTATIONSSGENERICFILTER_TXX