ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkHistogram.h
Go to the documentation of this file.
1/*=========================================================================
2 *
3 * Copyright NumFOCUS
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * https://www.apache.org/licenses/LICENSE-2.0.txt
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 *=========================================================================*/
18#ifndef itkHistogram_h
19#define itkHistogram_h
20
21#include <vector>
22
23#include "itkArray.h"
24#include "itkSample.h"
27
28namespace itk
29{
30namespace Statistics
31{
32
75
76template <typename TMeasurement = float, typename TFrequencyContainer = DenseFrequencyContainer2>
77class ITK_TEMPLATE_EXPORT Histogram : public Sample<Array<TMeasurement>>
78{
79public:
80 ITK_DISALLOW_COPY_AND_MOVE(Histogram);
81
82 // This type serves as the indirect definition of MeasurementVectorType
84
86 using Self = Histogram;
90
92 itkOverrideGetNameOfClassMacro(Histogram);
93
95 itkNewMacro(Self);
96
98 using MeasurementType = TMeasurement;
99
102 using typename Superclass::InstanceIdentifier;
104
106
108 using FrequencyContainerType = TFrequencyContainer;
109 using FrequencyContainerPointer = typename FrequencyContainerType::Pointer;
110
112 using AbsoluteFrequencyType = typename FrequencyContainerType::AbsoluteFrequencyType;
113 using TotalAbsoluteFrequencyType = typename FrequencyContainerType::TotalAbsoluteFrequencyType;
114 using RelativeFrequencyType = typename FrequencyContainerType::RelativeFrequencyType;
115 using TotalRelativeFrequencyType = typename FrequencyContainerType::TotalRelativeFrequencyType;
116
120
124
126 using BinMinVectorType = std::vector<MeasurementType>;
127 using BinMaxVectorType = std::vector<MeasurementType>;
128 using BinMinContainerType = std::vector<BinMinVectorType>;
129 using BinMaxContainerType = std::vector<BinMaxVectorType>;
130
134 void
135 Initialize(const SizeType & size);
136
140 void
141 Initialize(const SizeType & size, MeasurementVectorType & lowerBound, MeasurementVectorType & upperBound);
142
144 void
146
150 bool
151 GetIndex(const MeasurementVectorType & measurement, IndexType & index) const;
152
156 const IndexType &
158
161 itkGetConstMacro(ClipBinsAtEnds, bool);
162 itkSetMacro(ClipBinsAtEnds, bool);
163 itkBooleanMacro(ClipBinsAtEnds);
167 bool
168 IsIndexOutOfBounds(const IndexType & index) const;
169
174 GetInstanceIdentifier(const IndexType & index) const;
175
178 Size() const override;
179
181 const SizeType &
182 GetSize() const;
183
186 GetSize(unsigned int dimension) const;
187
189 const MeasurementType &
190 GetBinMin(unsigned int dimension, InstanceIdentifier nbin) const;
191
193 const MeasurementType &
194 GetBinMax(unsigned int dimension, InstanceIdentifier nbin) const;
195
197 void
198 SetBinMin(unsigned int dimension, InstanceIdentifier nbin, MeasurementType min);
199
201 void
202 SetBinMax(unsigned int dimension, InstanceIdentifier nbin, MeasurementType max);
203
206 const MeasurementType &
207 GetBinMinFromValue(unsigned int dimension, float value) const;
208
211 const MeasurementType &
212 GetBinMaxFromValue(unsigned int dimension, float value) const;
213
215 const BinMinVectorType &
216 GetDimensionMins(unsigned int dimension) const;
217
219 const BinMaxVectorType &
220 GetDimensionMaxs(unsigned int dimension) const;
221
223 const BinMinContainerType &
224 GetMins() const;
225
227 const BinMaxContainerType &
228 GetMaxs() const;
229
233
237
241
244 GetFrequency(const IndexType & index) const;
245
247 void
249
252 bool
254
257 bool
259
262 bool
264
268 bool
270
274 bool
276
284 bool
286
292
295 GetMeasurementVector(const IndexType & index) const;
296
300 GetMeasurement(InstanceIdentifier n, unsigned int dimension) const;
301
304 GetTotalFrequency() const override;
305
308 GetFrequency(InstanceIdentifier n, unsigned int dimension) const;
309
325 double
326 Quantile(unsigned int dimension, double p) const;
327
329 double
330 Mean(unsigned int dimension) const;
331
333 void
334 Graft(const DataObject *) override;
335
336protected:
337 void
338 PrintSelf(std::ostream & os, Indent indent) const override;
339
340public:
347 {
348 public:
349 friend class Histogram;
350
351 ConstIterator(const Self * histogram)
352 {
353 m_Id = 0;
354 m_Histogram = histogram;
355 }
356
358 {
359 m_Id = it.m_Id;
361 }
362
365 {
366 m_Id = it.m_Id;
368 return *this;
369 }
370
373 {
374 return m_Histogram->GetFrequency(m_Id);
375 }
376
379 {
380 return m_Id;
381 }
382
385 {
386 return m_Histogram->GetMeasurementVector(m_Id);
387 }
388
389 const IndexType &
390 GetIndex() const
391 {
392 return m_Histogram->GetIndex(m_Id);
393 }
394
397 {
398 ++m_Id;
399 return *this;
400 }
401
402 bool
403 operator==(const ConstIterator & it) const
404 {
405 return (m_Id == it.m_Id);
406 }
407
409
410 protected:
411 ConstIterator(InstanceIdentifier id, const Self * histogram)
412 : m_Id(id)
413 , m_Histogram(histogram)
414 {}
415
416 // ConstIterator pointing DenseFrequencyContainer
418
419 // Pointer of DenseFrequencyContainer
421
422 private:
423 ConstIterator() = delete;
424 }; // end of iterator class
425
431 class Iterator : public ConstIterator
432 {
433 public:
434 Iterator() = delete;
435 Iterator(const Self * histogram) = delete;
436 Iterator(InstanceIdentifier id, const Self * histogram) = delete;
437 Iterator(const ConstIterator & it) = delete;
439 operator=(const ConstIterator & it) = delete;
440
441 Iterator(Self * histogram)
442 : ConstIterator(histogram)
443 {}
444
446 : ConstIterator(id, histogram)
447 {}
448
449 Iterator(const Iterator & it)
450 : ConstIterator(it)
451 {}
452
453 Iterator &
454 operator=(const Iterator & it)
455 {
456 this->ConstIterator::operator=(it);
457 return *this;
458 }
459
460 bool
462 {
463 auto * histogram = const_cast<Self *>(this->m_Histogram);
464
465 return histogram->SetFrequency(this->m_Id, value);
466 }
467 }; // end of iterator class
468
469 Iterator
471 {
472 const Iterator iter(0, this);
473
474 return iter;
475 }
476
477 Iterator
479 {
480 return Iterator(m_OffsetTable[this->GetMeasurementVectorSize()], this);
481 }
482
483 ConstIterator
484 Begin() const
485 {
486 const ConstIterator iter(0, this);
487
488 return iter;
489 }
490
491 ConstIterator
492 End() const
493 {
494 return ConstIterator(m_OffsetTable[this->GetMeasurementVectorSize()], this);
495 }
496
497protected:
499 ~Histogram() override = default;
500
501 // The number of bins for each dimension
503
504private:
505 using OffsetTableType = std::vector<InstanceIdentifier>;
508 unsigned int m_NumberOfInstances{ 0 };
509
510 // This method is provided here just to avoid a "hidden" warning
511 // related to the virtual method available in DataObject.
512 void
513 Initialize() override
514 {}
515
516 // lower bound of each bin
517 std::vector<std::vector<MeasurementType>> m_Min{};
518
519 // upper bound of each bin
520 std::vector<std::vector<MeasurementType>> m_Max{};
521
524
525 bool m_ClipBinsAtEnds{ true };
526};
527} // end of namespace Statistics
528} // end of namespace itk
529
530#ifndef ITK_MANUAL_INSTANTIATION
531# include "itkHistogram.hxx"
532#endif
533
534#endif
Array class with size defined at construction time.
Definition itkArray.h:48
itk::IndexValueType ValueType
Definition itkArray.h:51
Control indentation during Print() invocation.
Definition itkIndent.h:50
Implements transparent reference counting.
class that walks through the elements of the histogram.
bool operator==(const ConstIterator &it) const
ConstIterator(InstanceIdentifier id, const Self *histogram)
ConstIterator & operator=(const ConstIterator &it)
InstanceIdentifier GetInstanceIdentifier() const
AbsoluteFrequencyType GetFrequency() const
const MeasurementVectorType & GetMeasurementVector() const
class that walks through the elements of the histogram.
Iterator(const Self *histogram)=delete
Iterator(const ConstIterator &it)=delete
Iterator & operator=(const Iterator &it)
Iterator(InstanceIdentifier id, const Self *histogram)=delete
ConstIterator & operator=(const ConstIterator &it)=delete
bool SetFrequency(const AbsoluteFrequencyType value)
Iterator(InstanceIdentifier id, Self *histogram)
MeasurementVectorType ValueType
~Histogram() override=default
void Initialize(const SizeType &size, MeasurementVectorType &lowerBound, MeasurementVectorType &upperBound)
SizeValueType GetSize(unsigned int dimension) const
std::vector< std::vector< MeasurementType > > m_Min
const BinMaxVectorType & GetDimensionMaxs(unsigned int dimension) const
MeasurementType GetMeasurement(InstanceIdentifier n, unsigned int dimension) const
const MeasurementType & GetBinMax(unsigned int dimension, InstanceIdentifier nbin) const
const MeasurementType & GetBinMaxFromValue(unsigned int dimension, float value) const
bool GetIndex(const MeasurementVectorType &measurement, IndexType &index) const
Sample< ArrayType > Superclass
std::vector< BinMaxVectorType > BinMaxContainerType
typename FrequencyContainerType::Pointer FrequencyContainerPointer
double Mean(unsigned int dimension) const
InstanceIdentifier Size() const override
const BinMinVectorType & GetDimensionMins(unsigned int dimension) const
bool SetFrequencyOfMeasurement(const MeasurementVectorType &measurement, AbsoluteFrequencyType value)
bool IncreaseFrequency(InstanceIdentifier id, AbsoluteFrequencyType value)
AbsoluteFrequencyType GetFrequency(InstanceIdentifier id) const override
InstanceIdentifier GetInstanceIdentifier(const IndexType &index) const
Array< itk::IndexValueType > IndexType
const IndexType & GetIndex(InstanceIdentifier id) const
AbsoluteFrequencyType GetFrequency(InstanceIdentifier n, unsigned int dimension) const
typename FrequencyContainerType::TotalAbsoluteFrequencyType TotalAbsoluteFrequencyType
double Quantile(unsigned int dimension, double p) const
FrequencyContainerPointer m_FrequencyContainer
const MeasurementVectorType & GetHistogramMaxFromIndex(const IndexType &index) const
const MeasurementVectorType & GetMeasurementVector(InstanceIdentifier id) const override
typename FrequencyContainerType::AbsoluteFrequencyType AbsoluteFrequencyType
const MeasurementVectorType & GetMeasurementVector(const IndexType &index) const
ConstIterator Begin() const
ConstIterator End() const
void SetBinMax(unsigned int dimension, InstanceIdentifier nbin, MeasurementType max)
std::vector< MeasurementType > BinMaxVectorType
const MeasurementType & GetBinMinFromValue(unsigned int dimension, float value) const
typename MeasurementVectorTraits::InstanceIdentifier InstanceIdentifier
Array< TMeasurement > ArrayType
typename FrequencyContainerType::RelativeFrequencyType RelativeFrequencyType
bool IncreaseFrequencyOfIndex(const IndexType &index, AbsoluteFrequencyType value)
typename SizeType::ValueType SizeValueType
const SizeType & GetSize() const
void Graft(const DataObject *) override
TFrequencyContainer FrequencyContainerType
void SetBinMin(unsigned int dimension, InstanceIdentifier nbin, MeasurementType min)
const BinMaxContainerType & GetMaxs() const
Array< itk::SizeValueType > SizeType
typename FrequencyContainerType::TotalRelativeFrequencyType TotalRelativeFrequencyType
TotalAbsoluteFrequencyType GetTotalFrequency() const override
std::vector< std::vector< MeasurementType > > m_Max
std::vector< BinMinVectorType > BinMinContainerType
const MeasurementVectorType & GetHistogramMinFromIndex(const IndexType &index) const
const BinMinContainerType & GetMins() const
void PrintSelf(std::ostream &os, Indent indent) const override
typename IndexType::ValueType IndexValueType
void Initialize(const SizeType &size)
SmartPointer< const Self > ConstPointer
bool IncreaseFrequencyOfMeasurement(const MeasurementVectorType &measurement, AbsoluteFrequencyType value)
AbsoluteFrequencyType GetFrequency(const IndexType &index) const
std::vector< InstanceIdentifier > OffsetTableType
const MeasurementType & GetBinMin(unsigned int dimension, InstanceIdentifier nbin) const
bool SetFrequencyOfIndex(const IndexType &index, AbsoluteFrequencyType value)
ArrayType MeasurementVectorType
Definition itkSample.h:77
SmartPointer< Self > Pointer
bool SetFrequency(InstanceIdentifier id, AbsoluteFrequencyType value)
bool IsIndexOutOfBounds(const IndexType &index) const
void SetFrequency(AbsoluteFrequencyType value)
std::vector< MeasurementType > BinMinVectorType
virtual MeasurementVectorSizeType GetMeasurementVectorSize() const
typename MeasurementVectorTraits::InstanceIdentifier InstanceIdentifier
Definition itkSample.h:91
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....