]> Creatis software - clitk.git/blob - tools/clitkImageStatisticsGenericFilter.txx
1995198234be2f07e4db47f3921dd9338e97482a
[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     // For each Label
178     typename LabelImageType::PixelType label;
179     unsigned int numberOfLabels;
180     if (m_ArgsInfo.label_given)
181       numberOfLabels=m_ArgsInfo.label_given;
182     else
183       numberOfLabels=1;
184
185     unsigned int firstComponent = 0, lastComponent = 0;
186     if (m_ArgsInfo.channel_arg == -1) {
187       firstComponent = 0;
188       lastComponent = Components - 1;
189     }
190     else {
191       firstComponent = m_ArgsInfo.channel_arg;
192       lastComponent = m_ArgsInfo.channel_arg;
193     }
194
195     for (unsigned int c=firstComponent; c<=lastComponent; c++) {
196       if (m_Verbose) std::cout << std::endl << "Processing channel " << c << std::endl;
197
198       input_adaptor->SelectNthElement(c);
199       input_adaptor->Update();
200
201       for (unsigned int k=0; k< numberOfLabels; k++) {
202         label=m_ArgsInfo.label_arg[k];
203
204         std::cout<<std::endl;
205         if (m_Verbose) std::cout<<"-------------"<<std::endl;
206         if (m_Verbose) std::cout<<"| Label: "<<label<<"  |"<<std::endl;
207         if (m_Verbose) std::cout<<"-------------"<<std::endl;
208
209         // Histograms
210         if (m_ArgsInfo.histogram_given) {
211           statisticsFilter->SetUseHistograms(true);
212           statisticsFilter->SetHistogramParameters(m_ArgsInfo.bins_arg, m_ArgsInfo.lower_arg, m_ArgsInfo.upper_arg);
213         }
214         statisticsFilter->Update();
215
216         // Output
217         if (m_Verbose) std::cout<<"N° of pixels: ";
218           std::cout<<statisticsFilter->GetCount(label)<<std::endl;
219
220         if (m_Verbose) std::cout<<"Mean: ";
221           std::cout<<statisticsFilter->GetMean(label)<<std::endl;
222
223         if (m_Verbose) std::cout<<"SD: ";
224           std::cout<<statisticsFilter->GetSigma(label)<<std::endl;
225
226         if (m_Verbose) std::cout<<"Variance: ";
227           std::cout<<statisticsFilter->GetVariance(label)<<std::endl;
228
229         if (m_Verbose) std::cout<<"Min: ";
230           std::cout<<statisticsFilter->GetMinimum(label)<<std::endl;
231
232         if (m_Verbose) std::cout<<"Max: ";
233           std::cout<<statisticsFilter->GetMaximum(label)<<std::endl;
234
235         if (m_Verbose) std::cout<<"Sum: ";
236           std::cout<<statisticsFilter->GetSum(label)<<std::endl;
237
238         if (m_Verbose) std::cout<<"Bounding box: ";
239
240         for(unsigned int i =0; i <statisticsFilter->GetBoundingBox(label).size(); i++)
241           std::cout<<statisticsFilter->GetBoundingBox(label)[i]<<" ";
242         std::cout<<std::endl;
243
244         // Histogram
245         if (m_ArgsInfo.histogram_given)
246         {
247           if (m_Verbose) std::cout<<"Median: ";
248           std::cout<<statisticsFilter->GetMedian(label)<<std::endl;
249
250           typename StatisticsImageFilterType::HistogramPointer histogram =statisticsFilter->GetHistogram(label);
251
252           // Screen
253           if (m_Verbose) std::cout<<"Histogram: "<<std::endl;
254             std::cout<<"# MinBin\tMidBin\tMaxBin\tFrequency"<<std::endl;
255           for( int i =0; i <m_ArgsInfo.bins_arg; i++)
256             std::cout<<histogram->GetBinMin(0,i)<<"\t"<<histogram->GetMeasurement(i,0)<<"\t"<<histogram->GetBinMax(0,i)<<"\t"<<histogram->GetFrequency(i)<<std::endl;
257
258           // Add to the file
259           std::ofstream histogramFile(m_ArgsInfo.histogram_arg);
260           histogramFile<<"#Histogram: "<<std::endl;
261           histogramFile<<"#MinBin\tMidBin\tMaxBin\tFrequency"<<std::endl;
262           for( int i =0; i <m_ArgsInfo.bins_arg; i++)
263             histogramFile<<histogram->GetBinMin(0,i)<<"\t"<<histogram->GetMeasurement(i,0)<<"\t"<<histogram->GetBinMax(0,i)<<"\t"<<histogram->GetFrequency(i)<<std::endl;
264         }
265       }
266     }
267
268     return;
269
270   }
271
272
273 }//end clitk
274
275 #endif //#define clitkImageStatisticsGenericFilter_txx