18 #ifndef sitkLabelShapeStatisticsImageFilter_h
19 #define sitkLabelShapeStatisticsImageFilter_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
SetComputeOrientedBoundingBox (
bool ComputeOrientedBoundingBox ) { this->m_ComputeOrientedBoundingBox = ComputeOrientedBoundingBox;
return *
this; }
122 std::vector<unsigned int>
GetBoundingBox(int64_t label)
const {
return this->m_pfGetBoundingBox(label); };
131 std::vector<unsigned int>
GetRegion(int64_t label)
const {
return this->m_pfGetRegion(label); };
140 std::vector<double>
GetCentroid(int64_t label)
const {
return this->m_pfGetCentroid(label); };
149 double GetElongation(int64_t label)
const {
return this->m_pfGetElongation(label); };
185 double GetFeretDiameter(int64_t label)
const {
return this->m_pfGetFeretDiameter(label); };
194 double GetFlatness(int64_t label)
const {
return this->m_pfGetFlatness(label); };
202 std::vector<int64_t>
GetLabels()
const {
return this->m_Labels; };
229 double GetPerimeter(int64_t label)
const {
return this->m_pfGetPerimeter(label); };
256 double GetPhysicalSize(int64_t label)
const {
return this->m_pfGetPhysicalSize(label); };
265 std::vector<double>
GetPrincipalAxes(int64_t label)
const {
return this->m_pfGetPrincipalAxes(label); };
274 std::vector<double>
GetPrincipalMoments(int64_t label)
const {
return this->m_pfGetPrincipalMoments(label); };
283 double GetRoundness(int64_t label)
const {
return this->m_pfGetRoundness(label); };
328 std::vector<unsigned int>
GetIndexes(int64_t label)
const {
return this->m_pfGetIndexes(label); };
337 std::vector<unsigned int>
GetRLEIndexes(int64_t label)
const {
return this->m_pfGetRLEIndexes(label); };
341 std::string
GetName()
const {
return std::string (
"LabelShapeStatisticsImageFilter"); }
344 std::string ToString()
const;
349 void Execute (
const Image& image1 );
353 bool HasLabel(int64_t label );
356 uint64_t GetNumberOfLabels( );
363 template <
class TImageType>
void ExecuteInternal (
const Image& image1 );
372 double m_BackgroundValue{0};
374 bool m_ComputeFeretDiameter{
false};
376 bool m_ComputePerimeter{
true};
378 bool m_ComputeOrientedBoundingBox{
false};
399 std::vector<int64_t> m_Labels{std::vector<int64_t>()};