ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkChainCodePath.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 itkChainCodePath_h
19#define itkChainCodePath_h
20
21#include "itkPath.h"
22#include "itkOffset.h"
23#include "itkObjectFactory.h"
24
25#include <vector>
26
27namespace itk
28{
49template <unsigned int VDimension>
50class ITK_TEMPLATE_EXPORT ChainCodePath : public Path<unsigned int, Offset<VDimension>, VDimension>
51{
52public:
53 ITK_DISALLOW_COPY_AND_MOVE(ChainCodePath);
54
56 static constexpr unsigned int Dimension = VDimension;
57
61
64
66 itkOverrideGetNameOfClassMacro(ChainCodePath);
67
69 using typename Superclass::OutputType;
70 using typename Superclass::InputType;
71
75
76 using ChainCodeType = std::vector<OffsetType>;
77
78 using ChainCodeSizeType = typename ChainCodeType::size_type;
79
80 // Functions inherited from Path
81
84 Evaluate(const InputType & input) const override
85 {
86 return m_Chain[input];
87 }
88
90 IndexType
91 EvaluateToIndex(const InputType & input) const override;
92
98 IncrementInput(InputType & input) const override;
99
102 EndOfInput() const override
103 {
104 return static_cast<InputType>(NumberOfSteps()); // 0 is before the first step, 1 is after it
105 }
106
108 itkNewMacro(Self);
109
112 itkSetMacro(Start, IndexType);
113 itkGetConstReferenceMacro(Start, IndexType);
115
117 virtual inline void
119 {
120 m_Chain.insert(m_Chain.begin() + position, step);
121 this->Modified();
122 }
123
125 virtual inline void
127 {
128 m_Chain[position] = step;
129 this->Modified();
130 }
131
133 virtual inline void
135 {
136 m_Chain.clear();
137 this->Modified();
138 }
139
141 virtual inline ChainCodeSizeType
143 {
144 return m_Chain.size();
145 }
146
148 void
149 Initialize() override
150 {
151 m_Start = this->GetZeroIndex();
152 this->Clear();
153 }
154
155protected:
157 ~ChainCodePath() override = default;
158 void
159 PrintSelf(std::ostream & os, Indent indent) const override;
160
161private:
162 IndexType m_Start{}; // origin image index for the path
163 ChainCodeType m_Chain{}; // the chain code (vector of offsets)
164};
165} // end namespace itk
166
167#ifndef ITK_MANUAL_INSTANTIATION
168# include "itkChainCodePath.hxx"
169#endif
170
171#endif
IndexType EvaluateToIndex(const InputType &input) const override
Index< VDimension > IndexType
SmartPointer< Self > Pointer
Offset< VDimension > OutputType
Definition itkPath.h:75
SmartPointer< const Self > ConstPointer
static constexpr unsigned int Dimension
ChainCodePath< VDimension > Self
OffsetType IncrementInput(InputType &input) const override
std::vector< OffsetType > ChainCodeType
Path< unsigned int, Offset< VDimension >, VDimension > Superclass
void Initialize() override
virtual void ChangeStep(InputType position, OffsetType step)
OutputType Evaluate(const InputType &input) const override
void PrintSelf(std::ostream &os, Indent indent) const override
virtual void InsertStep(InputType position, OffsetType step)
virtual ChainCodeSizeType NumberOfSteps() const
InputType EndOfInput() const override
~ChainCodePath() override=default
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