18 #ifndef sitkLabelIntensityStatisticsImageFilter_h
19 #define sitkLabelIntensityStatisticsImageFilter_h
67 SITK_RETURN_SELF_TYPE_HEADER
SetBackgroundValue (
double BackgroundValue ) { this->m_BackgroundValue = BackgroundValue;
return *
this; }
77 SITK_RETURN_SELF_TYPE_HEADER
SetComputeFeretDiameter (
bool ComputeFeretDiameter ) { this->m_ComputeFeretDiameter = ComputeFeretDiameter;
return *
this; }
91 SITK_RETURN_SELF_TYPE_HEADER
SetComputePerimeter (
bool ComputePerimeter ) { this->m_ComputePerimeter = ComputePerimeter;
return *
this; }
105 SITK_RETURN_SELF_TYPE_HEADER
SetNumberOfBins ( uint32_t NumberOfBins ) { this->m_NumberOfBins = NumberOfBins;
return *
this; }
118 std::vector<unsigned int>
GetBoundingBox(int64_t label)
const {
return this->m_pfGetBoundingBox(label); };
127 std::vector<unsigned int>
GetRegion(int64_t label)
const {
return this->m_pfGetRegion(label); };
136 std::vector<double>
GetCentroid(int64_t label)
const {
return this->m_pfGetCentroid(label); };
145 double GetElongation(int64_t label)
const {
return this->m_pfGetElongation(label); };
181 double GetFeretDiameter(int64_t label)
const {
return this->m_pfGetFeretDiameter(label); };
190 double GetFlatness(int64_t label)
const {
return this->m_pfGetFlatness(label); };
198 std::vector<int64_t>
GetLabels()
const {
return this->m_Labels; };
225 double GetPerimeter(int64_t label)
const {
return this->m_pfGetPerimeter(label); };
252 double GetPhysicalSize(int64_t label)
const {
return this->m_pfGetPhysicalSize(label); };
261 std::vector<double>
GetPrincipalAxes(int64_t label)
const {
return this->m_pfGetPrincipalAxes(label); };
270 std::vector<double>
GetPrincipalMoments(int64_t label)
const {
return this->m_pfGetPrincipalMoments(label); };
279 double GetRoundness(int64_t label)
const {
return this->m_pfGetRoundness(label); };
288 std::vector<double>
GetCenterOfGravity(int64_t label)
const {
return this->m_pfGetCenterOfGravity(label); };
297 double GetKurtosis(int64_t label)
const {
return this->m_pfGetKurtosis(label); };
306 double GetMaximum(int64_t label)
const {
return this->m_pfGetMaximum(label); };
315 std::vector<uint32_t>
GetMaximumIndex(int64_t label)
const {
return this->m_pfGetMaximumIndex(label); };
324 double GetMean(int64_t label)
const {
return this->m_pfGetMean(label); };
333 double GetMedian(int64_t label)
const {
return this->m_pfGetMedian(label); };
342 double GetMinimum(int64_t label)
const {
return this->m_pfGetMinimum(label); };
351 std::vector<uint32_t>
GetMinimumIndex(int64_t label)
const {
return this->m_pfGetMinimumIndex(label); };
360 double GetSkewness(int64_t label)
const {
return this->m_pfGetSkewness(label); };
378 double GetSum(int64_t label)
const {
return this->m_pfGetSum(label); };
387 double GetVariance(int64_t label)
const {
return this->m_pfGetVariance(label); };
427 std::string
GetName()
const {
return std::string (
"LabelIntensityStatisticsImageFilter"); }
430 std::string ToString()
const;
435 void Execute (
const Image & image,
const Image & featureImage );
439 bool HasLabel(int64_t label );
442 uint64_t GetNumberOfLabels( );
450 template <
class TImageType1,
class TImageType2>
void DualExecuteInternal (
const Image * image,
const Image * featureImage );
458 double m_BackgroundValue{0};
460 bool m_ComputeFeretDiameter{
false};
462 bool m_ComputePerimeter{
true};
464 uint32_t m_NumberOfBins{128u};
485 std::vector<int64_t> m_Labels{std::vector<int64_t>()};