ITK  5.0.0
Insight Segmentation and Registration Toolkit
itkShapedFloodFilledImageFunctionConditionalConstIterator.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright Insight Software Consortium
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  * http://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 
23 namespace itk
24 {
37 template< typename TImage, typename TFunction >
39  public ShapedFloodFilledFunctionConditionalConstIterator< TImage, TFunction >
40 {
41 public:
42 
46 
49 
52 
54  using IndexType = typename Superclass::IndexType;
55 
57  using SizeType = typename Superclass::SizeType;
58 
61 
63  using ImageType = typename Superclass::ImageType;
64 
67 
69  using PixelType = typename Superclass::PixelType;
70 
75  static constexpr unsigned int NDimensions = Superclass::NDimensions;
76 
81  const ImageType *imagePtr,
82  FunctionType *fnPtr,
83  IndexType startIndex):Superclass(imagePtr,
84  fnPtr,
85  startIndex) {}
86 
91  const ImageType *imagePtr,
92  FunctionType *fnPtr,
93  std::vector< IndexType > & startIndex):Superclass(imagePtr,
94  fnPtr,
95  startIndex) {}
96 
101  const ImageType *imagePtr,
102  FunctionType *fnPtr):Superclass(imagePtr,
103  fnPtr) {}
104 
107 
109  bool IsPixelIncluded(const IndexType & index) const override;
110 };
111 } // end namespace itk
112 
113 #ifndef ITK_MANUAL_INSTANTIATION
114 #include "itkShapedFloodFilledImageFunctionConditionalConstIterator.hxx"
115 #endif
116 
117 #endif
typename TImage::RegionType RegionType
ShapedFloodFilledImageFunctionConditionalConstIterator(const ImageType *imagePtr, FunctionType *fnPtr, IndexType startIndex)
typename TImage::InternalPixelType InternalPixelType
typename TImage::PixelType PixelType
typename TImage::IndexType IndexType
Iterates over a flood-filled image function with read-only access to pixels.
Iterates over a flood-filled spatial function with read-only access to pixels.
A base class for other iterators where membership in the set of output pixels is conditional upon som...
ShapedFloodFilledImageFunctionConditionalConstIterator(const ImageType *imagePtr, FunctionType *fnPtr, std::vector< IndexType > &startIndex)