![]() |
aimsalgo
5.1.2
Neuroimaging image processing
|
#include <aims/histogram/cumulated.h>


Public Member Functions | |
| CumulatedHistogram () | |
| Constructors and destructor. More... | |
| CumulatedHistogram (const CumulatedHistogram< T > &other) | |
| copy constructor More... | |
| virtual | ~CumulatedHistogram () |
| destructor More... | |
Cumulated histogram computation | |
| void | doit (const carto::rc_ptr< carto::Volume< T > > &thing) |
| computation from a Volume More... | |
| void | doit (const SimpleHistogram< T > &thing) |
| computation from an already computed classical histogram More... | |
| int | valueForPercentage (float) |
| return the bin value for a given percentage More... | |
Public Member Functions inherited from Histogram< T > | |
| Histogram () | |
| constructor. More... | |
| Histogram (const Histogram< T > &other) | |
| copy constructor. More... | |
| virtual | ~Histogram () |
| destructor. More... | |
| carto::VolumeRef< int32_t > & | data () |
| return a reference to the data field of the histogram class. More... | |
| const carto::VolumeRef< int32_t > & | data () const |
| return a constant reference to the data field of the histogram class. More... | |
| int32_t * | beginValid () |
| return the iterator to the first valid value of the histogram More... | |
| int32_t * | endValid () |
| return the iterator to the last valid value of the histogram More... | |
| int32_t * | beginValid () const |
| return the constant iterator to the first valid value of the histogram More... | |
| int32_t * | endValid () const |
| return the constant iterator to the last valid value of the histogram More... | |
| int | minValid () const |
| return the minimum valid (used) value of the histogram More... | |
| int | maxValid () const |
| returnn the maximum valid (used) value of the histogram More... | |
| int | totalPoints () const |
| return the total number of points in the histogram More... | |
Additional Inherited Members | |
Protected Attributes inherited from Histogram< T > | |
| int | _nPoints |
| total number of points More... | |
| int | _minValid |
| minimum used value More... | |
| int | _maxValid |
| maximum used value More... | |
| carto::VolumeRef< int32_t > | _data |
| histogram datas More... | |
Definition at line 42 of file cumulated.h.
|
inline |
|
inline |
copy constructor
Definition at line 51 of file cumulated.h.
|
inlinevirtual |
destructor
Definition at line 54 of file cumulated.h.
|
inlinevirtual |
computation from a Volume
Reimplemented from Histogram< T >.
Definition at line 72 of file cumulated.h.
References SimpleHistogram< T >::doit().
|
inline |
computation from an already computed classical histogram
Definition at line 83 of file cumulated.h.
References carto::VolumeRef< class >::begin(), Histogram< T >::data(), carto::VolumeRef< class >::end(), carto::VolumeRef< class >::getSizeX(), Histogram< T >::maxValid(), Histogram< T >::minValid(), and Histogram< T >::totalPoints().
|
inline |
return the bin value for a given percentage
Definition at line 105 of file cumulated.h.