00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef __itkLabelStatisticsImageFilter_h
00018 #define __itkLabelStatisticsImageFilter_h
00019
00020 #include "itkImageToImageFilter.h"
00021 #include "itkNumericTraits.h"
00022 #include "itkArray.h"
00023 #include "itkSimpleDataObjectDecorator.h"
00024 #include "itk_hash_map.h"
00025 #include "itkHistogram.h"
00026 #include "itkFastMutexLock.h"
00027 #include <vector>
00028
00029 namespace itk {
00030
00054 template<class TInputImage, class TLabelImage>
00055 class ITK_EXPORT LabelStatisticsImageFilter :
00056 public ImageToImageFilter<TInputImage, TInputImage>
00057 {
00058 public:
00060 typedef LabelStatisticsImageFilter Self;
00061 typedef ImageToImageFilter<TInputImage,TInputImage> Superclass;
00062 typedef SmartPointer<Self> Pointer;
00063 typedef SmartPointer<const Self> ConstPointer;
00064
00066 itkNewMacro(Self);
00067
00069 itkTypeMacro(LabelStatisticsImageFilter, ImageToImageFilter);
00070
00072 typedef typename TInputImage::Pointer InputImagePointer;
00073 typedef typename TInputImage::RegionType RegionType ;
00074 typedef typename TInputImage::SizeType SizeType ;
00075 typedef typename TInputImage::IndexType IndexType ;
00076 typedef typename TInputImage::PixelType PixelType ;
00077
00079 typedef TLabelImage LabelImageType;
00080 typedef typename TLabelImage::Pointer LabelImagePointer;
00081 typedef typename TLabelImage::RegionType LabelRegionType ;
00082 typedef typename TLabelImage::SizeType LabelSizeType ;
00083 typedef typename TLabelImage::IndexType LabelIndexType ;
00084 typedef typename TLabelImage::PixelType LabelPixelType ;
00085
00087 itkStaticConstMacro(ImageDimension, unsigned int,
00088 TInputImage::ImageDimension ) ;
00089
00091 typedef typename NumericTraits<PixelType>::RealType RealType;
00092
00094 typedef typename DataObject::Pointer DataObjectPointer;
00095
00097 typedef SimpleDataObjectDecorator<RealType> RealObjectType;
00098
00100 typedef std::vector<typename IndexType::IndexValueType> BoundingBoxType;
00101
00103 typedef itk::Statistics::Histogram<RealType,1> HistogramType;
00104 typedef typename HistogramType::Pointer HistogramPointer;
00105
00107 class LabelStatistics
00108 {
00109 public:
00110
00111
00112 LabelStatistics()
00113 {
00114
00115 m_Count = 0;
00116 m_Sum = NumericTraits<RealType>::Zero;
00117 m_SumOfSquares = NumericTraits<RealType>::Zero;
00118
00119
00120 m_Minimum = NumericTraits<RealType>::max();
00121 m_Maximum = NumericTraits<RealType>::NonpositiveMin();
00122
00123
00124 m_Mean = NumericTraits<RealType>::Zero;
00125 m_Sigma = NumericTraits<RealType>::Zero;
00126 m_Variance = NumericTraits<RealType>::Zero;
00127
00128 unsigned int imageDimension = itkGetStaticConstMacro(ImageDimension);
00129 m_BoundingBox.resize(imageDimension*2);
00130 for (unsigned int i = 0; i < imageDimension * 2; i += 2)
00131 {
00132 m_BoundingBox[i] = NumericTraits<ITK_TYPENAME IndexType::IndexValueType>::max();
00133 m_BoundingBox[i+1] = NumericTraits<ITK_TYPENAME IndexType::IndexValueType>::NonpositiveMin();
00134 }
00135 m_Histogram = 0;
00136
00137 }
00138
00139
00140 LabelStatistics(int size, RealType lowerBound, RealType upperBound)
00141 {
00142
00143
00144 m_Count = 0;
00145 m_Sum = NumericTraits<RealType>::Zero;
00146 m_SumOfSquares = NumericTraits<RealType>::Zero;
00147
00148
00149 m_Minimum = NumericTraits<RealType>::max();
00150 m_Maximum = NumericTraits<RealType>::NonpositiveMin();
00151
00152
00153 m_Mean = NumericTraits<RealType>::Zero;
00154 m_Sigma = NumericTraits<RealType>::Zero;
00155 m_Variance = NumericTraits<RealType>::Zero;
00156
00157 unsigned int imageDimension = itkGetStaticConstMacro(ImageDimension);
00158 m_BoundingBox.resize(imageDimension*2);
00159 for (unsigned int i = 0; i < imageDimension * 2; i += 2)
00160 {
00161 m_BoundingBox[i] = NumericTraits<ITK_TYPENAME IndexType::IndexValueType>::max();
00162 m_BoundingBox[i+1] = NumericTraits<ITK_TYPENAME IndexType::IndexValueType>::NonpositiveMin();
00163 }
00164
00165
00166 m_Histogram = HistogramType::New();
00167 typename HistogramType::SizeType hsize;
00168 hsize[0] = size;
00169 typename HistogramType::MeasurementVectorType lb;
00170 lb[0] = lowerBound;
00171 typename HistogramType::MeasurementVectorType ub;
00172 ub[0] = upperBound;
00173 m_Histogram->Initialize(hsize, lb, ub);
00174 }
00175
00176
00177 LabelStatistics(const LabelStatistics& l)
00178 {
00179 m_Count = l.m_Count;
00180 m_Minimum = l.m_Minimum;
00181 m_Maximum = l.m_Maximum;
00182 m_Mean = l.m_Mean;
00183 m_Sum = l.m_Sum;
00184 m_SumOfSquares = l.m_SumOfSquares;
00185 m_Sigma = l.m_Sigma;
00186 m_Variance = l.m_Variance;
00187 m_BoundingBox = l.m_BoundingBox;
00188 m_Histogram = l.m_Histogram;
00189 }
00190
00191
00192 LabelStatistics& operator= (const LabelStatistics& l)
00193 {
00194 m_Count = l.m_Count;
00195 m_Minimum = l.m_Minimum;
00196 m_Maximum = l.m_Maximum;
00197 m_Mean = l.m_Mean;
00198 m_Sum = l.m_Sum;
00199 m_SumOfSquares = l.m_SumOfSquares;
00200 m_Sigma = l.m_Sigma;
00201 m_Variance = l.m_Variance;
00202 m_BoundingBox = l.m_BoundingBox;
00203 m_Histogram = l.m_Histogram;
00204 }
00205
00206 unsigned long m_Count;
00207 RealType m_Minimum;
00208 RealType m_Maximum;
00209 RealType m_Mean;
00210 RealType m_Sum;
00211 RealType m_SumOfSquares;
00212 RealType m_Sigma;
00213 RealType m_Variance;
00214 BoundingBoxType m_BoundingBox;
00215 typename HistogramType::Pointer m_Histogram;
00216 };
00217
00219 typedef itk::hash_map<LabelPixelType, LabelStatistics> MapType;
00220 typedef typename itk::hash_map<LabelPixelType, LabelStatistics>::iterator MapIterator;
00221 typedef typename itk::hash_map<LabelPixelType, LabelStatistics>::const_iterator MapConstIterator;
00222
00223
00224 itkSetMacro(UseHistograms, bool);
00225 itkGetMacro(UseHistograms, bool);
00226 itkBooleanMacro(UseHistograms);
00227
00229 void SetLabelInput(TLabelImage *input)
00230 {
00231
00232 this->SetNthInput(1, const_cast<TLabelImage *>(input) );
00233 }
00234
00236 LabelImageType * GetLabelInput()
00237 {
00238 return static_cast<LabelImageType*>(const_cast<DataObject *>(this->ProcessObject::GetInput(1)));
00239 }
00240
00243 bool HasLabel(LabelPixelType label) const
00244 {
00245 return m_LabelStatistics.find(label) != m_LabelStatistics.end();
00246 }
00247
00249 unsigned long GetNumberOfObjects() const
00250 {
00251 return m_LabelStatistics.size();
00252 }
00253 unsigned long GetNumberOfLabels() const
00254 {
00255 return this->GetNumberOfObjects();
00256 }
00257
00258
00260 RealType GetMinimum(LabelPixelType label) const;
00261
00263 RealType GetMaximum(LabelPixelType label) const;
00264
00266 RealType GetMean(LabelPixelType label) const;
00267
00269 RealType GetMedian(LabelPixelType label) const;
00270
00272 RealType GetSigma(LabelPixelType label) const;
00273
00275 RealType GetVariance(LabelPixelType label) const;
00276
00278 BoundingBoxType GetBoundingBox(LabelPixelType label) const;
00279
00281 RegionType GetRegion(LabelPixelType label) const;
00282
00284 RealType GetSum(LabelPixelType label) const;
00285
00287 unsigned long GetCount(LabelPixelType label) const;
00288
00290 HistogramPointer GetHistogram(LabelPixelType label) const;
00291
00293 void SetHistogramParameters(const int numBins, RealType lowerBound,
00294 RealType upperBound) ;
00295
00296 protected:
00297 LabelStatisticsImageFilter();
00298 ~LabelStatisticsImageFilter(){};
00299 void PrintSelf(std::ostream& os, Indent indent) const;
00300
00302 void AllocateOutputs();
00303
00305 void BeforeThreadedGenerateData ();
00306
00308 void AfterThreadedGenerateData ();
00309
00311 void ThreadedGenerateData (const RegionType&
00312 outputRegionForThread,
00313 int threadId) ;
00314
00315
00316 void GenerateInputRequestedRegion();
00317
00318
00319 void EnlargeOutputRequestedRegion(DataObject *data);
00320
00321
00322 private:
00323 LabelStatisticsImageFilter(const Self&);
00324 void operator=(const Self&);
00325
00326 std::vector<MapType> m_LabelStatisticsPerThread;
00327 MapType m_LabelStatistics;
00328
00329 bool m_UseHistograms;
00330 typename HistogramType::SizeType m_NumBins;
00331 RealType m_LowerBound;
00332 RealType m_UpperBound;
00333 SimpleFastMutexLock m_Mutex;
00334
00335 } ;
00336
00337 }
00338
00339 #ifndef ITK_MANUAL_INSTANTIATION
00340 #include "itkLabelStatisticsImageFilter.txx"
00341 #endif
00342
00343 #endif