ITK  5.0.0
Insight Segmentation and Registration Toolkit
itkFloodFilledSpatialFunctionConditionalConstIterator.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 itkFloodFilledSpatialFunctionConditionalConstIterator_h
19 #define itkFloodFilledSpatialFunctionConditionalConstIterator_h
20 
22 
23 namespace itk
24 {
34 template< typename TImage, typename TFunction >
36  TImage, TFunction >
37 {
38 public:
39 
43 
46 
49 
51  using IndexType = typename Superclass::IndexType;
52 
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  FunctionType *fnPtr,
76  IndexType startIndex);
77 
82  FunctionType *fnPtr);
83 
86 
88  bool IsPixelIncluded(const IndexType & index) const override;
89 
91  void SetOriginInclusionStrategy() { m_InclusionStrategy = 0; }
92 
94  void SetCenterInclusionStrategy() { m_InclusionStrategy = 1; }
95 
97  void SetCompleteInclusionStrategy() { m_InclusionStrategy = 2; }
98 
100  void SetIntersectInclusionStrategy() { m_InclusionStrategy = 3; }
101 
102 protected: //made protected so other iterators can access
103 
115  unsigned char m_InclusionStrategy;
116 };
117 } // end namespace itk
118 
119 #ifndef ITK_MANUAL_INSTANTIATION
120 #include "itkFloodFilledSpatialFunctionConditionalConstIterator.hxx"
121 #endif
122 
123 #endif
typename TImage::RegionType RegionType
typename TImage::InternalPixelType InternalPixelType
typename TImage::PixelType PixelType
typename TImage::IndexType IndexType
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...