18 #ifndef sitkLabelStatisticsImageFilter_h
19 #define sitkLabelStatisticsImageFilter_h
66 SITK_RETURN_SELF_TYPE_HEADER
SetUseHistograms (
bool UseHistograms ) { this->m_UseHistograms = UseHistograms;
return *
this; }
69 SITK_RETURN_SELF_TYPE_HEADER
UseHistogramsOn() {
return this->SetUseHistograms(
true); }
70 SITK_RETURN_SELF_TYPE_HEADER
UseHistogramsOff() {
return this->SetUseHistograms(
false); }
82 double GetMinimum(int64_t label)
const {
return this->m_pfGetMinimum(label); };
91 double GetMaximum(int64_t label)
const {
return this->m_pfGetMaximum(label); };
100 double GetMean(int64_t label)
const {
return this->m_pfGetMean(label); };
109 double GetMedian(int64_t label)
const {
return this->m_pfGetMedian(label); };
118 double GetSigma(int64_t label)
const {
return this->m_pfGetSigma(label); };
127 double GetVariance(int64_t label)
const {
return this->m_pfGetVariance(label); };
136 double GetSum(int64_t label)
const {
return this->m_pfGetSum(label); };
145 uint64_t
GetCount(int64_t label)
const {
return this->m_pfGetCount(label); };
154 std::vector<int>
GetBoundingBox(int64_t label)
const {
return this->m_pfGetBoundingBox(label); };
163 std::vector<unsigned int>
GetRegion(int64_t label)
const {
return this->m_pfGetRegion(label); };
171 std::vector<int64_t>
GetLabels()
const {
return this->m_Labels; };
175 std::string
GetName()
const {
return std::string (
"LabelStatisticsImageFilter"); }
178 std::string ToString()
const;
183 void Execute (
const Image & image,
const Image & labelImage );
187 bool HasLabel(int64_t label );
190 uint64_t GetNumberOfLabels( );
198 template <
class TImageType1,
class TImageType2>
void DualExecuteInternal (
const Image * image,
const Image * labelImage );
205 bool m_UseHistograms{
true};
228 std::vector<int64_t> m_Labels{std::vector<int64_t>()};