ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkFloodFilledImageFunctionConditionalIterator.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 itkFloodFilledImageFunctionConditionalIterator_h
19#define itkFloodFilledImageFunctionConditionalIterator_h
20
22
23namespace itk
24{
37template <typename TImage, typename TFunction>
39 : public FloodFilledImageFunctionConditionalConstIterator<TImage, TFunction>
40{
41public:
45
47 using typename Superclass::FunctionType;
48
50 using typename Superclass::FunctionInputType;
51
53 using typename Superclass::IndexType;
54
56 using typename Superclass::SeedsContainerType;
57
59 using typename Superclass::SizeType;
60
62 using typename Superclass::RegionType;
63
65 using typename Superclass::ImageType;
66
68 using typename Superclass::InternalPixelType;
69
71 using typename Superclass::PixelType;
72
77 static constexpr unsigned int NDimensions = Superclass::NDimensions;
78
83 : Superclass(imagePtr, fnPtr, startIndex)
84 {}
85
90 FunctionType * fnPtr,
91 std::vector<IndexType> & startIndex)
92 : Superclass(imagePtr, fnPtr, startIndex)
93 {}
94
99 : Superclass(imagePtr, fnPtr)
100 {}
101
103 const PixelType
104 Get() const override
105 {
106 return const_cast<ImageType *>(this->m_Image.GetPointer())->GetPixel(this->m_IndexStack.front());
107 }
108
110 void
111 Set(const PixelType & value)
112 {
113 const_cast<ImageType *>(this->m_Image.GetPointer())->GetPixel(this->m_IndexStack.front()) = value;
114 }
115
118};
119} // end namespace itk
120
121#endif
FloodFilledImageFunctionConditionalConstIterator(const ImageType *imagePtr, FunctionType *fnPtr, IndexType startIndex)
FloodFilledImageFunctionConditionalConstIterator< TImage, TFunction > Superclass
FloodFilledImageFunctionConditionalIterator(ImageType *imagePtr, FunctionType *fnPtr)
FloodFilledImageFunctionConditionalIterator(ImageType *imagePtr, FunctionType *fnPtr, IndexType startIndex)
~FloodFilledImageFunctionConditionalIterator() override=default
FloodFilledImageFunctionConditionalIterator(ImageType *imagePtr, FunctionType *fnPtr, std::vector< IndexType > &startIndex)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....