]> Creatis software - clitk.git/blob - tools/clitkImageStatisticsGenericFilter.txx
b87114d6d591008f715c8d20989fdc3c6fd7b49d
[clitk.git] / tools / clitkImageStatisticsGenericFilter.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 #ifndef clitkImageStatisticsGenericFilter_txx
19 #define clitkImageStatisticsGenericFilter_txx
20
21 #include "itkNthElementImageAdaptor.h"
22 #include "itkJoinSeriesImageFilter.h"
23
24 #include "clitkImageStatisticsGenericFilter.h"
25 #include "clitkCropLikeImageFilter.h"
26 #include "clitkResampleImageWithOptionsFilter.h"
27
28 namespace clitk
29 {
30
31   //-------------------------------------------------------------------
32   // Update with the number of dimensions
33   //-------------------------------------------------------------------
34   template<unsigned int Dimension, unsigned int Components>
35   void
36   ImageStatisticsGenericFilter::UpdateWithDim(std::string PixelType)
37   {
38     if (m_Verbose) std::cout << "Image was detected to be "<<Dimension<<"D and "<< PixelType<<" with " << Components << " channel(s)..."<<std::endl;
39
40     if(PixelType == "short"){
41       if (m_Verbose) std::cout << "Launching filter in "<< Dimension <<"D and signed short..." << std::endl;
42       UpdateWithDimAndPixelType<Dimension, signed short, Components>();
43     }
44     else if(PixelType == "unsigned_short"){
45       if (m_Verbose) std::cout  << "Launching filter in "<< Dimension <<"D and unsigned_short..." << std::endl;
46       UpdateWithDimAndPixelType<Dimension, unsigned short, Components>();
47     }
48
49     else if (PixelType == "unsigned_char"){
50       if (m_Verbose) std::cout  << "Launching filter in "<< Dimension <<"D and unsigned_char..." << std::endl;
51       UpdateWithDimAndPixelType<Dimension, unsigned char, Components>();
52     }
53
54     else if(PixelType == "double"){
55       if (m_Verbose) std::cout << "Launching filter in "<< Dimension <<"D and double..." << std::endl;
56       UpdateWithDimAndPixelType<Dimension, double, Components>();
57     }
58     else {
59       if (m_Verbose) std::cout  << "Launching filter in "<< Dimension <<"D and float..." << std::endl;
60       UpdateWithDimAndPixelType<Dimension, float, Components>();
61     }
62   }
63
64
65   //-------------------------------------------------------------------
66   // Update with the number of dimensions and the pixeltype
67   //-------------------------------------------------------------------
68   template <unsigned int Dimension, class  PixelType, unsigned int Components>
69   void
70   ImageStatisticsGenericFilter::UpdateWithDimAndPixelType()
71   {
72
73     // ImageTypes
74     typedef unsigned char LabelPixelType;
75     typedef itk::Image<itk::Vector<PixelType, Components>, Dimension> InputImageType;
76     typedef itk::Image<LabelPixelType, Dimension> LabelImageType;
77
78     // Read the input
79     typedef itk::ImageFileReader<InputImageType> InputReaderType;
80     typename InputReaderType::Pointer reader = InputReaderType::New();
81     reader->SetFileName( m_InputFileName);
82     reader->Update();
83     typename InputImageType::Pointer input= reader->GetOutput();
84
85     typedef itk::NthElementImageAdaptor<InputImageType, PixelType> InputImageAdaptorType;
86     typedef itk::Image<PixelType, Dimension> OutputImageType;
87
88     typename InputImageAdaptorType::Pointer input_adaptor = InputImageAdaptorType::New();
89     input_adaptor->SetImage(input);
90
91     // Filter
92     typedef itk::LabelStatisticsImageFilter<InputImageAdaptorType, LabelImageType> StatisticsImageFilterType;
93     typename StatisticsImageFilterType::Pointer statisticsFilter=StatisticsImageFilterType::New();
94     statisticsFilter->SetInput(input_adaptor);
95
96     // Label image
97     typename LabelImageType::Pointer labelImage;
98     if (m_ArgsInfo.mask_given) {
99       int maskDimension, maskComponents;
100       std::string maskPixelType;
101       ReadImageDimensionAndPixelType(m_ArgsInfo.mask_arg, maskDimension, maskPixelType, maskComponents);
102
103       if (maskDimension == Dimension - 1) {
104         // Due to a limitation of filter itk::LabelStatisticsImageFilter, InputImageType and LabelImageType
105         // must have the same image dimension. However, we want to support label images with Dl = Di - 1,
106         // so we need to replicate the label image as many times as the size along dimension Di.
107         if (m_Verbose)
108           std::cout << "Replicating label image to match input image's dimension... " << std::endl;
109
110         typedef itk::Image<LabelPixelType, Dimension - 1> ReducedLabelImageType;
111         typedef itk::ImageFileReader<ReducedLabelImageType> LabelImageReaderType;
112         typedef itk::JoinSeriesImageFilter<ReducedLabelImageType, LabelImageType> JoinImageFilterType;
113
114         typename LabelImageReaderType::Pointer labelImageReader=LabelImageReaderType::New();
115         labelImageReader->SetFileName(m_ArgsInfo.mask_arg);
116         labelImageReader->Update();
117
118         typename JoinImageFilterType::Pointer joinFilter = JoinImageFilterType::New();
119         typename InputImageType::SizeType size = input->GetLargestPossibleRegion().GetSize();
120         for (unsigned int i = 0; i < size[Dimension - 1]; i++)
121           joinFilter->PushBackInput(labelImageReader->GetOutput());
122
123         joinFilter->Update();
124         labelImage = joinFilter->GetOutput();
125       }
126       else {
127         typedef itk::ImageFileReader<LabelImageType> LabelImageReaderType;
128         typename LabelImageReaderType::Pointer labelImageReader=LabelImageReaderType::New();
129         labelImageReader->SetFileName(m_ArgsInfo.mask_arg);
130         labelImageReader->Update();
131         labelImage= labelImageReader->GetOutput();
132
133         // Check mask sampling/size
134         if (!HaveSameSizeAndSpacing<LabelImageType, InputImageType>(labelImage, input)) {
135           if (m_ArgsInfo.allow_resize_flag) {
136             if (m_ArgsInfo.verbose_flag) {
137               std::cout << "Resize mask image like input" << std::endl;
138             }
139             typedef clitk::ResampleImageWithOptionsFilter<LabelImageType> ResamplerType;
140             typename ResamplerType::Pointer resampler = ResamplerType::New();
141             resampler->SetInput(labelImage);
142             resampler->SetOutputSpacing(input->GetSpacing());
143             resampler->SetOutputOrigin(labelImage->GetOrigin());
144             resampler->SetGaussianFilteringEnabled(false);
145             resampler->Update();
146             labelImage = resampler->GetOutput();
147             //writeImage<LabelImageType>(labelImage, "test1.mha");
148
149             typedef clitk::CropLikeImageFilter<LabelImageType> FilterType;
150             typename FilterType::Pointer crop = FilterType::New();
151             crop->SetInput(labelImage);
152             crop->SetCropLikeImage(input);
153             crop->Update();
154             labelImage = crop->GetOutput();
155             //writeImage<LabelImageType>(labelImage, "test2.mha");
156
157           }
158           else {
159             std::cerr << "Mask image has a different size/spacing than input. Abort" << std::endl;
160             exit(-1);
161           }
162         }
163
164       }
165
166     }
167     else {
168       labelImage=LabelImageType::New();
169       labelImage->SetRegions(input->GetLargestPossibleRegion());
170       labelImage->SetOrigin(input->GetOrigin());
171       labelImage->SetSpacing(input->GetSpacing());
172       labelImage->Allocate();
173       labelImage->FillBuffer(m_ArgsInfo.label_arg[0]);
174     }
175     statisticsFilter->SetLabelInput(labelImage);
176
177     // Check/compute spacing
178     const typename LabelImageType::SpacingType& spacing = input->GetSpacing();
179     double spacing_cc = (spacing[0]*spacing[1]*spacing[2])/1000;
180     // std::cout<<"Spacing x : " << spacing[0]<<std::endl;
181     // std::cout<<"Spacing y :  " << spacing[1]<<std::endl;
182     // std::cout<<"Spacing z :  " << spacing[2]<<std::endl;
183     // std::cout <<"spacing_cc : " << spacing_cc << std::endl;
184
185
186     // For each Label
187     typename LabelImageType::PixelType label;
188     unsigned int numberOfLabels;
189     if (m_ArgsInfo.label_given)
190       numberOfLabels=m_ArgsInfo.label_given;
191     else
192       numberOfLabels=1;
193
194     unsigned int firstComponent = 0, lastComponent = 0;
195     if (m_ArgsInfo.channel_arg == -1) {
196       firstComponent = 0;
197       lastComponent = Components - 1;
198     }
199     else {
200       firstComponent = m_ArgsInfo.channel_arg;
201       lastComponent = m_ArgsInfo.channel_arg;
202     }
203
204     for (unsigned int c=firstComponent; c<=lastComponent; c++) {
205       if (m_Verbose) std::cout << std::endl << "Processing channel " << c << std::endl;
206
207       input_adaptor->SelectNthElement(c);
208       input_adaptor->Update();
209
210       for (unsigned int k=0; k< numberOfLabels; k++) {
211         label=m_ArgsInfo.label_arg[k];
212
213         std::cout<<std::endl;
214         if (m_Verbose) std::cout<<"-------------"<<std::endl;
215         if (m_Verbose) std::cout<<"| Label: "<<label<<"  |"<<std::endl;
216         if (m_Verbose) std::cout<<"-------------"<<std::endl;
217
218         // Histograms
219         if (m_ArgsInfo.histogram_given) {
220           statisticsFilter->SetUseHistograms(true);
221           statisticsFilter->SetHistogramParameters(m_ArgsInfo.bins_arg, m_ArgsInfo.lower_arg, m_ArgsInfo.upper_arg);
222         }
223
224         // DVH
225         if(m_ArgsInfo.dvhistogram_given)
226         {
227           statisticsFilter->SetUseHistograms(true);
228           statisticsFilter->SetHistogramParameters(m_ArgsInfo.bins_arg, m_ArgsInfo.lower_arg, m_ArgsInfo.upper_arg);
229         }
230
231         statisticsFilter->Update();
232
233         // Output
234        if (m_Verbose) std::cout<<"N° of pixels: ";
235         std::cout<<statisticsFilter->GetCount(label)<<std::endl;
236         if (m_Verbose) std::cout<<"Mean: ";
237         std::cout<<statisticsFilter->GetMean(label)<<std::endl;
238         if (m_Verbose) std::cout<<"SD: ";
239         std::cout<<statisticsFilter->GetSigma(label)<<std::endl;
240         if (m_Verbose) std::cout<<"Variance: ";
241         std::cout<<statisticsFilter->GetVariance(label)<<std::endl;
242         if (m_Verbose) std::cout<<"Min: ";
243         std::cout<<statisticsFilter->GetMinimum(label)<<std::endl;
244         if (m_Verbose) std::cout<<"Max: ";
245         std::cout<<statisticsFilter->GetMaximum(label)<<std::endl;
246         if (m_Verbose) std::cout<<"Sum: ";
247         std::cout<<statisticsFilter->GetSum(label)<<std::endl;
248         if (m_Verbose) std::cout<<"Bounding box: ";
249         for(unsigned int i =0; i <statisticsFilter->GetBoundingBox(label).size(); i++)
250             std::cout<<statisticsFilter->GetBoundingBox(label)[i]<<" ";
251         std::cout<<std::endl;
252
253         // Histogram
254         if (m_ArgsInfo.histogram_given)
255         {
256           if (m_Verbose) std::cout<<"Median: ";
257           std::cout<<statisticsFilter->GetMedian(label)<<std::endl;
258
259           typename StatisticsImageFilterType::HistogramPointer histogram =statisticsFilter->GetHistogram(label);
260
261           // Screen
262           if (m_Verbose) std::cout<<"Histogram: "<<std::endl;
263             std::cout<<"# MinBin\tMidBin\tMaxBin\tFrequency"<<std::endl;
264           for( int i =0; i <m_ArgsInfo.bins_arg; i++)
265             std::cout<<histogram->GetBinMin(0,i)<<"\t"<<histogram->GetMeasurement(i,0)<<"\t"<<histogram->GetBinMax(0,i)<<"\t"<<histogram->GetFrequency(i)<<std::endl;
266
267           // Add to the file
268           std::ofstream histogramFile(m_ArgsInfo.histogram_arg);
269           histogramFile<<"#Histogram: "<<std::endl;
270           histogramFile<<"#MinBin\tMidBin\tMaxBin\tFrequency"<<std::endl;
271           for( int i =0; i <m_ArgsInfo.bins_arg; i++)
272             histogramFile<<histogram->GetBinMin(0,i)<<"\t"<<histogram->GetMeasurement(i,0)<<"\t"<<histogram->GetBinMax(0,i)<<"\t"<<histogram->GetFrequency(i)<<std::endl;
273         }
274
275         // DVH
276         if(m_ArgsInfo.dvhistogram_given)
277         {
278             typename StatisticsImageFilterType::HistogramPointer dvhistogram = statisticsFilter->GetHistogram(label);
279             double totalVolumeCC = ((statisticsFilter->GetCount(label))*spacing_cc);
280             double totalVolume = statisticsFilter->GetCount(label);
281
282             // Screen
283             std::cout<<"# Total volume : ";
284             std::cout<<totalVolume<<" [No. of voxels]"<<std::endl;
285             std::cout<<"# Total volume : ";
286             std::cout<<totalVolumeCC<<" [cc]"<<std::endl;
287             std::cout<<"# Dose mean: ";
288             std::cout<<statisticsFilter->GetMean(label)<<" [Gy]"<<std::endl;
289             std::cout<<"# Dose min: ";
290             std::cout<<statisticsFilter->GetMinimum(label)<<" [Gy]"<<std::endl;
291             std::cout<<"# Dose max: ";
292             std::cout<<statisticsFilter->GetMaximum(label)<<" [Gy]"<<std::endl;
293             std::cout<<" "<<std::endl;
294             std::cout<<"#Dose_diff[Gy] Volume_diff[No. of voxels] Volume_diff[%] Volume_diff[cc] Volume_cumul[No. of voxels] Volume_cumul[%] Volume_cumul[cc]"<<std::endl;
295             for( int i =0; i <m_ArgsInfo.bins_arg; i++)
296             {
297               double popCumulativeVolume = 0;
298               for(int j=0; j<i; j++)
299               {
300                  popCumulativeVolume+=(dvhistogram->GetFrequency(j));
301               }
302               double cumulativeVolume = (totalVolume - (popCumulativeVolume + (dvhistogram->GetFrequency(i))));
303               double percentCumulativeVolume =(cumulativeVolume*100)/(statisticsFilter->GetCount(label)) ;
304               double ccCumulativeVolume = (totalVolumeCC -((popCumulativeVolume + (dvhistogram->GetFrequency(i)))*spacing_cc));
305               double percentDiffVolume = dvhistogram->GetFrequency(i)*100/(statisticsFilter->GetCount(label));
306               std::cout<<dvhistogram->GetBinMax(0,i)<<"\t  "<<dvhistogram->GetFrequency(i)<<"\t  "<<percentDiffVolume<<"\t "<<((dvhistogram->GetFrequency(i))*spacing_cc)<<"\t "<<"\t "<<cumulativeVolume<<"\t  "<<percentCumulativeVolume<<"\t  "<<ccCumulativeVolume<<"\t "<<std::endl;
307             }
308
309             // Add to the file
310             std::ofstream dvhistogramFile(m_ArgsInfo.dvhistogram_arg);
311             dvhistogramFile<<"# Total volume : ";
312             dvhistogramFile<<statisticsFilter->GetCount(label)<<" [No. of voxels]"<<std::endl;
313             dvhistogramFile<<"# Total volume : ";
314             dvhistogramFile<<totalVolumeCC<<" [cc]"<<std::endl;
315             dvhistogramFile<<"# Dose mean: ";
316             dvhistogramFile<<statisticsFilter->GetMean(label)<<" [Gy]"<<std::endl;
317             dvhistogramFile<<"# Dose min: ";
318             dvhistogramFile<<statisticsFilter->GetMinimum(label)<<" [Gy]"<<std::endl;
319             dvhistogramFile<<"# Dose max: ";
320             dvhistogramFile<<statisticsFilter->GetMaximum(label)<<" [Gy]"<<std::endl;
321             dvhistogramFile<<"  "<<std::endl;
322             dvhistogramFile<<"#Dose_diff[Gy] Volume_diff[No. of voxels] Volume_diff[%] Volume_diff[cc] Volume_cumul[No. of voxels] Volume_cumul[%] Volume_cumul[cc]"<<std::endl;
323             for( int i =0; i <m_ArgsInfo.bins_arg; i++)
324             {
325                double popCumulativeVolume = 0;
326                for(int j=0; j<i; j++)
327                {
328                  popCumulativeVolume+=(dvhistogram->GetFrequency(j));
329                }
330                double cumulativeVolume = (totalVolume - (popCumulativeVolume + (dvhistogram->GetFrequency(i))));
331                double percentCumulativeVolume =(cumulativeVolume*100)/(statisticsFilter->GetCount(label));
332                double ccCumulativeVolume = (totalVolumeCC -((popCumulativeVolume + (dvhistogram->GetFrequency(i)))*spacing_cc));
333                double percentDiffVolume = ((dvhistogram->GetFrequency(i))*100)/(statisticsFilter->GetCount(label));
334                dvhistogramFile<<dvhistogram->GetBinMax(0,i)<<"\t  "<<dvhistogram->GetFrequency(i)<<"\t  "<<percentDiffVolume<<"\t "<<((dvhistogram->GetFrequency(i))*spacing_cc)<<"\t "<<cumulativeVolume<<"\t "<<percentCumulativeVolume<<"\t  "<<ccCumulativeVolume<<std::endl;
335            }
336         }
337       }
338     }
339
340     return;
341
342   }
343
344
345 }//end clitk
346
347 #endif //#define clitkImageStatisticsGenericFilter_txx