/*========================================================================= * * Copyright NumFOCUS * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0.txt * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * *=========================================================================*/ #ifndef itkShapeLabelObjectAccessors_h #define itkShapeLabelObjectAccessors_h #include "itkLabelObjectAccessors.h" #include "itkIntTypes.h" /* * * This code was contributed in the Insight Journal paper: * "Label object representation and manipulation with ITK" * by Lehmann G. * https://www.insight-journal.org/browse/publication/176 * */ namespace itk { namespace Functor { template class NumberOfPixelsLabelObjectAccessor { public: using LabelObjectType = TLabelObject; using AttributeValueType = SizeValueType; inline AttributeValueType operator()(const LabelObjectType * labelObject) const { return labelObject->GetNumberOfPixels(); } }; template class BoundingBoxLabelObjectAccessor { public: using LabelObjectType = TLabelObject; using AttributeValueType = typename LabelObjectType::RegionType; inline AttributeValueType operator()(const LabelObjectType * labelObject) const { return labelObject->GetBoundingBox(); } }; template class PhysicalSizeLabelObjectAccessor { public: using LabelObjectType = TLabelObject; using AttributeValueType = double; inline AttributeValueType operator()(const LabelObjectType * labelObject) const { return labelObject->GetPhysicalSize(); } }; template class NumberOfPixelsOnBorderLabelObjectAccessor { public: using LabelObjectType = TLabelObject; using AttributeValueType = SizeValueType; inline AttributeValueType operator()(const LabelObjectType * labelObject) const { return labelObject->GetNumberOfPixelsOnBorder(); } }; template class PerimeterOnBorderLabelObjectAccessor { public: using LabelObjectType = TLabelObject; using AttributeValueType = double; inline AttributeValueType operator()(const LabelObjectType * labelObject) const { return labelObject->GetPerimeterOnBorder(); } }; template class CentroidLabelObjectAccessor { public: using LabelObjectType = TLabelObject; using AttributeValueType = typename LabelObjectType::CentroidType; inline AttributeValueType operator()(const LabelObjectType * labelObject) const { return labelObject->GetCentroid(); } }; template class FeretDiameterLabelObjectAccessor { public: using LabelObjectType = TLabelObject; using AttributeValueType = double; inline AttributeValueType operator()(const LabelObjectType * labelObject) const { return labelObject->GetFeretDiameter(); } }; template class PrincipalMomentsLabelObjectAccessor { public: using LabelObjectType = TLabelObject; using AttributeValueType = typename LabelObjectType::VectorType; inline AttributeValueType operator()(const LabelObjectType * labelObject) const { return labelObject->GetPrincipalMoments(); } }; template class PrincipalAxesLabelObjectAccessor { public: using LabelObjectType = TLabelObject; using AttributeValueType = typename LabelObjectType::MatrixType; inline AttributeValueType operator()(const LabelObjectType * labelObject) const { return labelObject->GetPrincipalAxes(); } }; template class ElongationLabelObjectAccessor { public: using LabelObjectType = TLabelObject; using AttributeValueType = double; inline AttributeValueType operator()(const LabelObjectType * labelObject) const { return labelObject->GetElongation(); } }; template class PerimeterLabelObjectAccessor { public: using LabelObjectType = TLabelObject; using AttributeValueType = double; inline AttributeValueType operator()(const LabelObjectType * labelObject) const { return labelObject->GetPerimeter(); } }; template class RoundnessLabelObjectAccessor { public: using LabelObjectType = TLabelObject; using AttributeValueType = double; inline AttributeValueType operator()(const LabelObjectType * labelObject) const { return labelObject->GetRoundness(); } }; template class EquivalentSphericalRadiusLabelObjectAccessor { public: using LabelObjectType = TLabelObject; using AttributeValueType = double; inline AttributeValueType operator()(const LabelObjectType * labelObject) const { return labelObject->GetEquivalentSphericalRadius(); } }; template class EquivalentSphericalPerimeterLabelObjectAccessor { public: using LabelObjectType = TLabelObject; using AttributeValueType = double; inline AttributeValueType operator()(const LabelObjectType * labelObject) const { return labelObject->GetEquivalentSphericalPerimeter(); } }; template class EquivalentEllipsoidDiameterLabelObjectAccessor { public: using LabelObjectType = TLabelObject; using AttributeValueType = typename LabelObjectType::VectorType; inline AttributeValueType operator()(const LabelObjectType * labelObject) const { return labelObject->GetEquivalentEllipsoidDiameter(); } }; template class FlatnessLabelObjectAccessor { public: using LabelObjectType = TLabelObject; using AttributeValueType = double; inline AttributeValueType operator()(const LabelObjectType * labelObject) const { return labelObject->GetFlatness(); } }; template class PerimeterOnBorderRatioLabelObjectAccessor { public: using LabelObjectType = TLabelObject; using AttributeValueType = double; inline AttributeValueType operator()(const LabelObjectType * labelObject) const { return labelObject->GetPerimeterOnBorderRatio(); } }; } // namespace Functor } // end namespace itk #endif