ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkChainCodePath2D.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 itkChainCodePath2D_h
19#define itkChainCodePath2D_h
20
21#include "itkChainCodePath.h"
22#include "itkIndex.h"
23
24#include <vector>
25#include <string>
26
27namespace itk
28{
51class ITK_TEMPLATE_EXPORT ChainCodePath2D : public ChainCodePath<2>
52{
53public:
54 ITK_DISALLOW_COPY_AND_MOVE(ChainCodePath2D);
55
57 static constexpr unsigned int Dimension = 2;
58
62
65
67 itkOverrideGetNameOfClassMacro(ChainCodePath2D);
68
72
76
80
82 using ChainCode2DType = std::vector<int>;
83
84 // Functions inherited from Path
85
88 Evaluate(const InputType & input) const override;
89
92 EvaluateToIndex(const InputType & input) const override;
93
99 IncrementInput(InputType & input) const override;
100
101 // Functions specific to ChainCodePath and its descendants
102
104 itkNewMacro(Self);
105
108 NumberOfSteps() const override
109 {
110 return m_Chain2D.size();
111 }
112
115 inline void
116 InsertStep(InputType position, int encodedStep)
117 {
118 m_Chain2D.insert(m_Chain2D.begin() + position, encodedStep);
119 this->Modified();
120 }
121
122 void
123 InsertStep(InputType position, OffsetType step) override
124 {
125 m_Chain2D.insert(m_Chain2D.begin() + position, EncodeOffset(step));
126 this->Modified();
127 }
128
129
132 inline void
133 ChangeStep(InputType position, int encodedStep)
134 {
135 m_Chain2D[position] = encodedStep;
136 this->Modified();
137 }
138
139 void
140 ChangeStep(InputType position, OffsetType step) override
141 {
142 m_Chain2D[position] = EncodeOffset(step);
143 this->Modified();
144 }
145
146
148 void
149 Clear() override
150 {
151 m_Chain2D.clear();
152 this->Modified();
153 }
154
155 std::string
157
158protected:
161 void
162 PrintSelf(std::ostream & os, Indent indent) const override;
163
165 inline int
167 {
168 return m_FreemanCode[step[0] + 1][step[1] + 1];
169 }
170
171 inline OffsetType
172 DecodeOffset(int encodedStep) const
173 {
174 return m_ReverseFreemanCode[encodedStep];
175 }
176
177private:
178 ChainCode2DType m_Chain2D{}; // the Freeman-encoded chain code
179
180 // FreemanCode[][] implements a lookup table for converting offsets to a
181 // Freeman code. Within each dimension, the only allowable offset values are
182 // { -1, 0, 1 }. The y-axis is assumed to point up. It is initialized in the
183 // constructor. Use it as follows:
184 //
185 // encodedValue = m_FreemanCode[ x offset + 1 ][ y offset + 1 ]
186 //
187 int m_FreemanCode[3][3]{};
188
189 // m_ReverseFreemanCode[ encodedValue ] implements a lookup table for the
190 // inverse of m_FreemanCode[][]. It is initialized in the constructor.
192};
193} // end namespace itk
194
195#endif
ChainCodePath< 2 > Superclass
SmartPointer< Self > Pointer
Superclass::ChainCodeSizeType ChainCodeSizeType
std::vector< int > ChainCode2DType
void ChangeStep(InputType position, int encodedStep)
OffsetType DecodeOffset(int encodedStep) const
void ChangeStep(InputType position, OffsetType step) override
OffsetType IncrementInput(InputType &input) const override
Superclass::InputType InputType
std::string GetChainCodeAsString() const
Superclass::ChainCodeType ChainCodeType
Superclass::OutputType OutputType
SmartPointer< const Self > ConstPointer
void InsertStep(InputType position, int encodedStep)
OffsetType m_ReverseFreemanCode[9]
~ChainCodePath2D() override
int EncodeOffset(OffsetType step) const
ChainCodeSizeType NumberOfSteps() const override
void InsertStep(InputType position, OffsetType step) override
IndexType EvaluateToIndex(const InputType &input) const override
static constexpr unsigned int Dimension
void PrintSelf(std::ostream &os, Indent indent) const override
OutputType Evaluate(const InputType &input) const override
Offset< VDimension > OutputType
std::vector< OffsetType > ChainCodeType
typename ChainCodeType::size_type ChainCodeSizeType
Control indentation during Print() invocation.
Definition itkIndent.h:50
virtual void Modified() const
Implements transparent reference counting.
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