ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkLineSpatialObject.h
Go to the documentation of this file.
1/*=========================================================================
2 *
3 * Copyright NumFOCUS
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * https://www.apache.org/licenses/LICENSE-2.0.txt
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 *=========================================================================*/
18#ifndef itkLineSpatialObject_h
19#define itkLineSpatialObject_h
20
21#include <list>
22
25
26namespace itk
27{
41
42template <unsigned int TDimension = 3>
43class ITK_TEMPLATE_EXPORT LineSpatialObject
44 : public PointBasedSpatialObject<TDimension, LineSpatialObjectPoint<TDimension>>
45{
46public:
47 ITK_DISALLOW_COPY_AND_MOVE(LineSpatialObject);
48
53
54 using ScalarType = double;
55
57 using LinePointListType = std::vector<LinePointType>;
58
60 using typename Superclass::PointType;
61 using typename Superclass::TransformType;
62 using typename Superclass::BoundingBoxType;
65
67 itkNewMacro(Self);
68
70 itkOverrideGetNameOfClassMacro(LineSpatialObject);
71
74 bool
75 IsInsideInObjectSpace(const PointType & point) const override;
76
77 /* Avoid hiding the overload that supports depth and name arguments */
79
80protected:
82 ~LineSpatialObject() override = default;
83
85 InternalClone() const override;
86};
87} // end namespace itk
88
89#ifndef ITK_MANUAL_INSTANTIATION
90# include "itkLineSpatialObject.hxx"
91#endif
92
93#endif // itkLineSpatialObject_h
SmartPointer< Self > Pointer
Point used for a line definition.
~LineSpatialObject() override=default
SmartPointer< const Self > ConstPointer
VectorContainer< PointType > PointContainerType
SmartPointer< Self > Pointer
std::vector< LinePointType > LinePointListType
PointBasedSpatialObject< TDimension, LineSpatialObjectPoint< TDimension > > Superclass
LightObject::Pointer InternalClone() const override
LineSpatialObjectPoint< TDimension > LinePointType
bool IsInsideInObjectSpace(const PointType &point) const override
SmartPointer< PointContainerType > PointContainerPointer
BoundingBox< IdentifierType, VDimension, ScalarType, VectorContainerType > BoundingBoxType
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
*par Constraints *The filter image with at least two dimensions and a vector *length of at least The theory supports extension to scalar but *the implementation of the itk vector classes do not **The template parameter TRealType must be floating point(float or double) or *a user-defined "real" numerical type with arithmetic operations defined *sufficient to compute derivatives. **\par Performance *This filter will automatically multithread if run with *SetUsePrincipleComponents
detail::VectorContainer< std::conditional_t< std::is_void_v< T2 >, SizeValueType, T1 >, std::conditional_t< std::is_void_v< T2 >, T1, T2 > > VectorContainer