ITK  5.0.0
Insight Segmentation and Registration Toolkit
itkFloodFilledSpatialFunctionConditionalIterator.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 itkFloodFilledSpatialFunctionConditionalIterator_h
19 #define itkFloodFilledSpatialFunctionConditionalIterator_h
20 
22 
23 namespace itk
24 {
34 template< typename TImage, typename 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):Superclass(imagePtr, fnPtr, startIndex) {}
77 
82  FunctionType *fnPtr):Superclass(imagePtr, fnPtr) {}
83 
85  const PixelType Get() const override
86  { return const_cast< ImageType * >( this->m_Image.GetPointer() )->GetPixel( this->m_IndexStack.front() ); }
87 
90  { return const_cast< ImageType * >( this->m_Image.GetPointer() )->GetPixel( this->m_IndexStack.front() ); }
91 
93  void Set(const PixelType & value)
94  { const_cast< ImageType * >( this->m_Image.GetPointer() )->GetPixel( this->m_IndexStack.front() ) = value; }
95 
98 };
99 } // end namespace itk
100 
101 #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.
Iterates over a flood-filled spatial function with write access to pixels.
A base class for other iterators where membership in the set of output pixels is conditional upon som...
FloodFilledSpatialFunctionConditionalIterator(ImageType *imagePtr, FunctionType *fnPtr, IndexType startIndex)