ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkShapedFloodFilledImageFunctionConditionalConstIterator.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 itkShapedFloodFilledImageFunctionConditionalConstIterator_h
19#define itkShapedFloodFilledImageFunctionConditionalConstIterator_h
20
22
23namespace itk
24{
37template <typename TImage, typename 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::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 static constexpr unsigned int NDimensions = Superclass::NDimensions;
75
80 FunctionType * fnPtr,
81 IndexType startIndex)
82 : Superclass(imagePtr, fnPtr, startIndex)
83 {}
84
89 FunctionType * fnPtr,
90 std::vector<IndexType> & startIndex)
91 : Superclass(imagePtr, fnPtr, startIndex)
92 {}
93
98 : Superclass(imagePtr, fnPtr)
99 {}
100
102
104 bool
105 IsPixelIncluded(const IndexType & index) const override;
106};
107} // end namespace itk
108
109#ifndef ITK_MANUAL_INSTANTIATION
110# include "itkShapedFloodFilledImageFunctionConditionalConstIterator.hxx"
111#endif
112
113#endif
ShapedFloodFilledFunctionConditionalConstIterator(const ImageType *imagePtr, FunctionType *fnPtr, IndexType startIndex)
ShapedFloodFilledImageFunctionConditionalConstIterator< TImage, TFunction > Self
ShapedFloodFilledFunctionConditionalConstIterator< TImage, TFunction > Superclass
ShapedFloodFilledImageFunctionConditionalConstIterator(const ImageType *imagePtr, FunctionType *fnPtr, IndexType startIndex)
ShapedFloodFilledImageFunctionConditionalConstIterator(const ImageType *imagePtr, FunctionType *fnPtr, std::vector< IndexType > &startIndex)
bool IsPixelIncluded(const IndexType &index) const override
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....