ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkFloodFilledSpatialFunctionConditionalIterator.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 itkFloodFilledSpatialFunctionConditionalIterator_h
19#define itkFloodFilledSpatialFunctionConditionalIterator_h
20
22
23namespace itk
24{
34template <typename TImage, typename TFunction>
37{
38public:
42
44 using typename Superclass::FunctionType;
45
47 using typename Superclass::FunctionInputType;
48
50 using typename Superclass::IndexType;
51
53 using typename Superclass::SeedsContainerType;
54
56 using typename Superclass::SizeType;
57
59 using typename Superclass::RegionType;
60
62 using typename Superclass::ImageType;
63
65 using typename Superclass::InternalPixelType;
66
68 using typename Superclass::PixelType;
69
74 : Superclass(imagePtr, fnPtr, startIndex)
75 {}
76
81 : Superclass(imagePtr, fnPtr)
82 {}
83
85 const PixelType
86 Get() const override
87 {
88 return const_cast<ImageType *>(this->m_Image.GetPointer())->GetPixel(this->m_IndexStack.front());
89 }
90
94 {
95 return const_cast<ImageType *>(this->m_Image.GetPointer())->GetPixel(this->m_IndexStack.front());
96 }
97
99 void
100 Set(const PixelType & value)
101 {
102 const_cast<ImageType *>(this->m_Image.GetPointer())->GetPixel(this->m_IndexStack.front()) = value;
103 }
104
107};
108} // end namespace itk
109
110#endif
FloodFilledSpatialFunctionConditionalConstIterator(const ImageType *imagePtr, FunctionType *fnPtr, IndexType startIndex)
FloodFilledSpatialFunctionConditionalConstIterator< TImage, TFunction > Superclass
FloodFilledSpatialFunctionConditionalIterator(ImageType *imagePtr, FunctionType *fnPtr, IndexType startIndex)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....