ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkSpatialObject.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 itkSpatialObject_h
19#define itkSpatialObject_h
20
21// Disable warning for lengthy symbol names in this file only
22
23#include "itkCovariantVector.h"
24#include "itkMacro.h"
25#include <list>
27#include "itkProcessObject.h"
28#include "itkIndex.h"
29#include "itkImageRegion.h"
30#include "itkAffineTransform.h"
31#include "itkVectorContainer.h"
32#include "itkBoundingBox.h"
33#include <limits>
34
35namespace itk
36{
57template <unsigned int VDimension = 3>
58class ITK_TEMPLATE_EXPORT SpatialObject : public DataObject
59{
60public:
61 ITK_DISALLOW_COPY_AND_MOVE(SpatialObject);
62
63 using ScalarType = double;
64
65 using ObjectDimensionType = unsigned int;
66
67 static constexpr ObjectDimensionType ObjectDimension = VDimension;
68
69 static constexpr unsigned int MaximumDepth = std::numeric_limits<unsigned int>::max();
70
73 unsigned int
75 {
76 return MaximumDepth;
77 }
78
81
84
85
86 // Spatial Function Iterator needs the following type alias
88
94
97
99
103
105
108
110 using ChildrenListType = std::list<Pointer>;
111 using ChildrenConstListType = std::list<ConstPointer>;
115 using ObjectListType = std::list<Pointer>;
116 using ObjectConstListType = std::list<ConstPointer>;
117
119
121
122 /* These are needed to participate in a Pipeline */
125
127 unsigned int
129 {
130 return VDimension;
131 }
134 itkNewMacro(Self);
135
137 itkOverrideGetNameOfClassMacro(SpatialObject);
138
141 void
142 SetId(int id);
143 itkGetConstReferenceMacro(Id, int);
145
149 itkSetMacro(TypeName, std::string);
150
152 virtual std::string
154 {
155 return m_TypeName;
156 }
157
164 virtual std::string
166
169 virtual void
171
173 void
174 SetProperty(const PropertyType & property)
175 {
176 this->m_Property = property;
177 this->Modified();
178 }
179
181 const PropertyType &
183 {
184 return this->m_Property;
185 }
186
187 PropertyType &
189 {
190 return this->m_Property;
191 }
192
196 GetMTime() const override;
197
202 {
203 return Superclass::GetMTime();
204 }
205
206
207 /**************/
208 /* Transforms */
209
210 /**************/
211
219 void
221 itkGetModifiableObjectMacro(ObjectToWorldTransform, TransformType);
222 const TransformType *
225
231 void
233 itkGetModifiableObjectMacro(ObjectToParentTransform, TransformType);
234 const TransformType *
237
244 void
246
247 /**********************************************************************/
248 /* These are the three member functions that a subclass will typically
249 * override.
250 * * ComputeMyBoundingBox (protected:)
251 * * IsInsideInObjectSpace
252 * * Update
253 * Optionally, a subclass may also wish to override
254 * * ValueAtInObjectSpace
255 * * IsEvaluableAtInObjectSpace - if the extent is beyond IsInside.
256 */
257
258 /**********************************************************************/
259
261 bool
262 IsInsideInObjectSpace(const PointType & point, unsigned int depth, const std::string & name = "") const;
263
266 virtual bool
267 IsInsideInObjectSpace(const PointType & point) const;
268
271 void
272 Update() override;
273
274
276 virtual bool
278 double & value,
279 unsigned int depth = 0,
280 const std::string & name = "") const;
281
288 virtual bool
289 IsEvaluableAtInObjectSpace(const PointType & point, unsigned int depth = 0, const std::string & name = "") const;
290
291 /********************************************************/
292 /* Helper functions to recurse queries through children */
293
294 /********************************************************/
295
297 virtual bool
298 IsInsideChildrenInObjectSpace(const PointType & point, unsigned int depth = 0, const std::string & name = "") const;
299
301 virtual bool
303 double & value,
304 unsigned int depth = 0,
305 const std::string & name = "") const;
306
308 virtual bool
310 unsigned int depth = 0,
311 const std::string & name = "") const;
312
313
314 /**************************/
315 /* Values and derivatives */
316
317 /**************************/
318
322 itkSetMacro(DefaultInsideValue, double);
323 itkGetConstMacro(DefaultInsideValue, double);
325
329 itkSetMacro(DefaultOutsideValue, double);
330 itkGetConstMacro(DefaultOutsideValue, double);
332
339#ifndef ITK_FUTURE_LEGACY_REMOVE
340 virtual
341#endif
342 bool
344 double & value,
345 unsigned int depth = 0,
346 const std::string & name = "") const;
347
354#ifndef ITK_FUTURE_LEGACY_REMOVE
355 virtual
356#endif
357 bool
358 IsInsideInWorldSpace(const PointType & point, unsigned int depth, const std::string & name = "") const;
359
362 bool
363 IsInsideInWorldSpace(const PointType & point) const;
364
371#ifndef ITK_FUTURE_LEGACY_REMOVE
372 virtual
373#endif
374 bool
375 IsEvaluableAtInWorldSpace(const PointType & point, unsigned int depth = 0, const std::string & name = "") const;
376
377
379 virtual void
381 short unsigned int order,
382 CovariantVectorType & value,
383 unsigned int depth = 0,
384 const std::string & name = "",
386
393#ifndef ITK_FUTURE_LEGACY_REMOVE
394 virtual
395#endif
396 void
398 short unsigned int order,
399 CovariantVectorType & value,
400 unsigned int depth = 0,
401 const std::string & name = "",
403
404
405 /*********************/
406 /* Deal with Parents */
407
408 /*********************/
409
413 void
414 SetParent(Self * parent);
415
418 virtual bool
419 HasParent() const;
420
425 virtual const Self *
426 GetParent() const;
427
432 virtual Self *
434
437 itkSetMacro(ParentId, int);
438 itkGetConstReferenceMacro(ParentId, int);
440
441 /**********************/
442 /* Deal with Children */
443
444 /**********************/
445
447 void
449
451 void
452 AddChild(Self * pointer);
453
456 bool
457 RemoveChild(Self * pointer);
458
460 void
461 RemoveAllChildren(unsigned int depth = MaximumDepth);
462
468 virtual ChildrenListType *
469 GetChildren(unsigned int depth = 0, const std::string & name = "") const;
470
476 virtual ChildrenConstListType *
477 GetConstChildren(unsigned int depth = 0, const std::string & name = "") const;
478
479 virtual void
480 AddChildrenToList(ChildrenListType * childrenList, unsigned int depth = 0, const std::string & name = "") const;
481
482 virtual void
484 unsigned int depth = 0,
485 const std::string & name = "") const;
486
488 unsigned int
489 GetNumberOfChildren(unsigned int depth = 0, const std::string & name = "") const;
490
494
498 bool
500
505 bool
507
509 void
511
516 int
518
519
520 /**********************/
521 /* Bounding Box */
522
523 /**********************/
524
528 itkGetConstObjectMacro(MyBoundingBoxInObjectSpace, BoundingBoxType);
529
533 virtual const BoundingBoxType *
535
541 virtual bool
542 ComputeFamilyBoundingBox(unsigned int depth = 0, const std::string & name = "") const;
543
546 itkGetConstObjectMacro(FamilyBoundingBoxInObjectSpace, BoundingBoxType);
547
550 virtual const BoundingBoxType *
552
553
554 /******************************/
555 /* Regions used by DataObject */
556
557 /******************************/
558
567 virtual void
569
576 virtual const RegionType &
578 {
580 }
581
585 virtual void
587
591 virtual const RegionType &
593 {
594 return m_BufferedRegion;
595 }
596
601 virtual void
603
608 void
609 SetRequestedRegion(const DataObject * data) override;
610
615 virtual const RegionType &
617 {
618 return m_RequestedRegion;
619 }
620
624 void
626
636 bool
638
647 bool
649
657 void
659
669 void
670 CopyInformation(const DataObject * data) override;
671
672 /*************************************/
673 /* Evaluate used by SpatialFunctions */
674
675 /*************************************/
676
681 bool
682 Evaluate(const PointType & point) const
683 {
684 return this->IsInsideInWorldSpace(point);
685 }
686
687#if !defined(ITK_LEGACY_REMOVE)
688 itkLegacyMacro(void ComputeObjectToWorldTransform())
689 {
690 this->Update(); /* Update() should be used instead of ProtectedComputeObjectToWorldTransform() */
691 }
692
693 itkLegacyMacro(void ComputeBoundingBox())
694 {
695 this->Update(); /* Update() should be used instead of outdated ComputeBoundingBox() */
696 }
697
699 itkLegacyMacro(virtual bool IsInside(const PointType & point, unsigned int depth = 0, const std::string & name = "")
700 const)
701 {
702 return IsInsideInObjectSpace(point, depth, name);
703 }
704
705#endif
706
707protected:
711 void
713
715 virtual void
717
722 SpatialObject() = default;
723
725 ~SpatialObject() override;
726
727 void
728 PrintSelf(std::ostream & os, Indent indent) const override;
729
735
736 typename LightObject::Pointer
737 InternalClone() const override;
738
739private:
741 int m_Id{ -1 };
742
744 std::string m_TypeName{ "SpatialObject" };
745
747
748 int m_ParentId{ -1 };
749 Self * m_Parent{ nullptr };
750
754
759
762
765
767
769 double m_DefaultInsideValue{ 1.0 };
770
773};
774
775} // end of namespace itk
776
777#if !defined(ITK_WRAPPING_PARSER)
778# ifndef ITK_MANUAL_INSTANTIATION
779# include "itkSpatialObject.hxx"
780# endif
781#endif
782
783#endif // itkSpatialObject_h
Represent and compute information about bounding boxes.
A templated class holding a n-Dimensional covariant vector.
AffineTransform< ScalarType, VDimension > TransformType
An image region represents a structured region of data.
Control indentation during Print() invocation.
Definition itkIndent.h:50
SmartPointer< Self > Pointer
virtual ModifiedTimeType GetMTime() const
virtual void Modified() const
A templated class holding a geometric point in n-Dimensional space.
Definition itkPoint.h:54
Implements transparent reference counting.
typename TransformType::Pointer TransformPointer
void SetObjectToParentTransform(const TransformType *transform)
virtual const BoundingBoxType * GetFamilyBoundingBoxInWorldSpace() const
virtual void Clear()
const BoundingBoxPointer m_MyBoundingBoxInWorldSpace
virtual void ComputeMyBoundingBox()
std::list< ConstPointer > ChildrenConstListType
virtual Self * GetParent()
void SetProperty(const PropertyType &property)
const BoundingBoxPointer m_FamilyBoundingBoxInWorldSpace
virtual ChildrenListType * GetChildren(unsigned int depth=0, const std::string &name="") const
virtual ChildrenConstListType * GetConstChildren(unsigned int depth=0, const std::string &name="") const
virtual bool IsInsideChildrenInObjectSpace(const PointType &point, unsigned int depth=0, const std::string &name="") const
void SetId(int id)
virtual void AddChildrenToList(ChildrenListType *childrenList, unsigned int depth=0, const std::string &name="") const
BoundingBox< IdentifierType, VDimension, ScalarType, VectorContainerType > BoundingBoxType
void UpdateOutputInformation() override
virtual std::string GetTypeName() const
bool VerifyRequestedRegion() override
virtual const BoundingBoxType * GetMyBoundingBoxInWorldSpace() const
virtual void DerivativeAtInObjectSpace(const PointType &point, short unsigned int order, CovariantVectorType &value, unsigned int depth=0, const std::string &name="", const DerivativeOffsetType &offset=MakeFilled< DerivativeOffsetType >(1))
virtual std::string GetClassNameAndDimension() const
SpatialObject()=default
virtual bool IsInsideInObjectSpace(const PointType &point) const
const PropertyType & GetProperty() const
virtual void SetLargestPossibleRegion(const RegionType &region)
virtual bool IsEvaluableAtChildrenInObjectSpace(const PointType &point, unsigned int depth=0, const std::string &name="") const
SmartPointer< const Self > ConstPointer
virtual const Self * GetParent() const
int GetNextAvailableId() const
void SetRequestedRegionToLargestPossibleRegion() override
void SetRequestedRegion(const DataObject *data) override
void SetParent(Self *parent)
bool ValueAtInWorldSpace(const PointType &point, double &value, unsigned int depth=0, const std::string &name="") const
const BoundingBoxPointer m_FamilyBoundingBoxInObjectSpace
virtual const RegionType & GetRequestedRegion() const
virtual void AddChildrenToConstList(ChildrenConstListType *childrenCList, unsigned int depth=0, const std::string &name="") const
const TransformPointer m_ObjectToWorldTransformInverse
void Update() override
virtual void SetRequestedRegion(const RegionType &region)
bool RequestedRegionIsOutsideOfTheBufferedRegion() override
void PrintSelf(std::ostream &os, Indent indent) const override
bool RemoveChild(Self *pointer)
bool IsInsideInWorldSpace(const PointType &point, unsigned int depth, const std::string &name="") const
void DerivativeAtInWorldSpace(const PointType &point, short unsigned int order, CovariantVectorType &value, unsigned int depth=0, const std::string &name="", const DerivativeOffsetType &offset=MakeFilled< DerivativeOffsetType >(1))
unsigned int GetMaximumDepth() const
virtual bool ComputeFamilyBoundingBox(unsigned int depth=0, const std::string &name="") const
static constexpr ObjectDimensionType ObjectDimension
ModifiedTimeType GetMTime() const override
const TransformPointer m_ObjectToParentTransform
void ProtectedComputeObjectToWorldTransform()
const TransformPointer m_ObjectToWorldTransform
virtual const RegionType & GetLargestPossibleRegion() const
virtual bool ValueAtInObjectSpace(const PointType &point, double &value, unsigned int depth=0, const std::string &name="") const
const TransformPointer m_ObjectToParentTransformInverse
static constexpr unsigned int MaximumDepth
bool IsInsideInObjectSpace(const PointType &point, unsigned int depth, const std::string &name="") const
LightObject::Pointer InternalClone() const override
DerivativeVectorType * DerivativeVectorPointer
bool IsEvaluableAtInWorldSpace(const PointType &point, unsigned int depth=0, const std::string &name="") const
unsigned int GetObjectDimension() const
void SetChildren(ChildrenListType &children)
SpatialObject< VDimension > * GetObjectById(int id)
ChildrenConstListType * ChildrenConstListPointer
bool FixParentChildHierarchyUsingParentIds()
SpatialObject< VDimension > Self
Vector< ScalarType, VDimension > VectorType
unsigned int GetNumberOfChildren(unsigned int depth=0, const std::string &name="") const
void AddChild(Self *pointer)
const TransformType * GetObjectToWorldTransformInverse() const
Point< ScalarType, VDimension > PointType
ImageRegion< VDimension > RegionType
virtual bool ValueAtChildrenInObjectSpace(const PointType &point, double &value, unsigned int depth=0, const std::string &name="") const
void RemoveAllChildren(unsigned int depth=MaximumDepth)
~SpatialObject() override
ModifiedTimeType GetMyMTime() const
VectorContainer< PointType > VectorContainerType
const TransformType * GetObjectToParentTransformInverse() const
Point< ScalarType, VDimension > InputType
const BoundingBoxPointer m_MyBoundingBoxInObjectSpace
virtual bool HasParent() const
virtual void SetBufferedRegion(const RegionType &region)
AffineTransform< ScalarType, VDimension > TransformType
bool Evaluate(const PointType &point) const
CovariantVector< ScalarType, VDimension > CovariantVectorType
void SetObjectToWorldTransform(const TransformType *transform)
void ComputeObjectToParentTransform()
Vector< double, VDimension > DerivativeOffsetType
typename BoundingBoxType::Pointer BoundingBoxPointer
const TransformType * TransformConstPointer
virtual bool IsEvaluableAtInObjectSpace(const PointType &point, unsigned int depth=0, const std::string &name="") const
PropertyType & GetProperty()
BoundingBoxType * GetModifiableMyBoundingBoxInObjectSpace()
std::list< ConstPointer > ObjectConstListType
std::list< Pointer > ChildrenListType
bool CheckIdValidity() const
bool IsInsideInWorldSpace(const PointType &point) const
CovariantVector< ScalarType, VDimension > DerivativeVectorType
virtual const RegionType & GetBufferedRegion() const
void CopyInformation(const DataObject *data) override
A templated class holding a n-Dimensional vector.
Definition itkVector.h:63
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
constexpr TContainer MakeFilled(typename TContainer::const_reference value)
detail::VectorContainer< std::conditional_t< std::is_void_v< T2 >, SizeValueType, T1 >, std::conditional_t< std::is_void_v< T2 >, T1, T2 > > VectorContainer
SizeValueType ModifiedTimeType
Represent a n-dimensional index in a n-dimensional image.
Definition itkIndex.h:69
Represent a n-dimensional size (bounds) of a n-dimensional image.
Definition itkSize.h:70