/*========================================================================= * * 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 itkBlobSpatialObject_h #define itkBlobSpatialObject_h #include #include "itkPointBasedSpatialObject.h" namespace itk { /** * \class BlobSpatialObject * * \brief Spatial object representing a potentially amorphous object. * * The BlobSpatialObject is a discretized representation of a "blob", * which can be taken to be an arbitrary, possibly amorphous shape. * The representation is a list of the points (voxel centers) contained * in the object. This can be thought of as an alternate way to * represent a binary image. * * \sa SpatialObjectPoint * * \ingroup ITKSpatialObjects * * \sphinx * \sphinxexample{Core/SpatialObjects/Blob,Blob} * \endsphinx */ template class ITK_TEMPLATE_EXPORT BlobSpatialObject : public PointBasedSpatialObject> { public: ITK_DISALLOW_COPY_AND_MOVE(BlobSpatialObject); using Self = BlobSpatialObject; using Superclass = PointBasedSpatialObject>; using Pointer = SmartPointer; using ConstPointer = SmartPointer; using ScalarType = double; using BlobPointType = SpatialObjectPoint; using BlobPointListType = std::vector; using typename Superclass::PointType; using typename Superclass::SpatialObjectPointType; using typename Superclass::TransformType; using typename Superclass::BoundingBoxType; using PointContainerType = VectorContainer; using PointContainerPointer = SmartPointer; /** Method for creation through the object factory. */ itkNewMacro(Self); /** \see LightObject::GetNameOfClass() */ itkOverrideGetNameOfClassMacro(BlobSpatialObject); protected: BlobSpatialObject(); ~BlobSpatialObject() override = default; typename LightObject::Pointer InternalClone() const override; }; } // end namespace itk #ifndef ITK_MANUAL_INSTANTIATION # include "itkBlobSpatialObject.hxx" #endif #endif // itkBlobSpatialObject_h