ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkLevelSetNode.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 itkLevelSetNode_h
19#define itkLevelSetNode_h
20
21#include "itkIndex.h"
22#include "itkImage.h"
23#include "itkVectorContainer.h"
24#include "itkVector.h"
25
26namespace itk
27{
44template <typename TPixel, unsigned int VSetDimension = 2>
46{
47public:
50
52 using PixelType = TPixel;
53
55 static constexpr unsigned int SetDimension = VSetDimension;
56
59
61 bool
62 operator>(const Self & node) const
63 {
64 return m_Value > node.m_Value;
65 }
66
68 bool
69 operator<(const Self & node) const
70 {
71 return m_Value < node.m_Value;
72 }
73
75 bool
76 operator<=(const Self & node) const
77 {
78 return m_Value <= node.m_Value;
79 }
80
82 bool
83 operator>=(const Self & node) const
84 {
85 return m_Value >= node.m_Value;
86 }
87
90 Self &
91 operator=(const Self & rhs)
92 {
93 if (this != &rhs)
94 {
95 m_Value = rhs.m_Value;
96 m_Index = rhs.m_Index;
97 }
98 return *this;
99 }
100
103 PixelType &
105 {
106 return m_Value;
107 }
108 const PixelType &
109 GetValue() const
110 {
111 return m_Value;
112 }
113 void
114 SetValue(const PixelType & input)
115 {
116 m_Value = input;
117 }
118
119
122 IndexType &
124 {
125 return m_Index;
126 }
127 const IndexType &
128 GetIndex() const
129 {
130 return m_Index;
131 }
132 void
133 SetIndex(const IndexType & input)
134 {
135 m_Index = input;
136 }
137
138
141 : m_Value(PixelType{})
142 {
143 m_Index.Fill(0);
144 }
145
147 LevelSetNode(const Self & node)
148 : m_Value(node.m_Value)
149 , m_Index(node.m_Index)
150 {}
151
152private:
155};
156} // end namespace itk
157
158#endif
bool operator>(const Self &node) const
bool operator<(const Self &node) const
void SetIndex(const IndexType &input)
const PixelType & GetValue() const
bool operator>=(const Self &node) const
Self & operator=(const Self &rhs)
bool operator<=(const Self &node) const
const IndexType & GetIndex() const
PixelType & GetValue()
void SetValue(const PixelType &input)
LevelSetNode(const Self &node)
IndexType & GetIndex()
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Represent a n-dimensional index in a n-dimensional image.
Definition itkIndex.h:69