ITK  5.0.0
Insight Segmentation and Registration Toolkit
Public Types | Public Member Functions | Static Public Member Functions | Static Public Attributes | Protected Attributes | List of all members
itk::ConditionalConstIterator< TImage > Class Template Referenceabstract

#include <itkConditionalConstIterator.h>

+ Inheritance diagram for itk::ConditionalConstIterator< TImage >:

Detailed Description

template<typename TImage>
class itk::ConditionalConstIterator< TImage >

A base class for other iterators where membership in the set of output pixels is conditional upon some property, calculation, etc. For example, a threshold iterator might walk a region and return only those pixels which meet a minimum intensity condition.

This class is the const version of the ConditionalIterator. For this reason, it doesn't support the Set() method.

Definition at line 38 of file itkConditionalConstIterator.h.

Public Types

using ImageType = TImage
 
using IndexType = typename TImage::IndexType
 
using InternalPixelType = typename TImage::InternalPixelType
 
using PixelType = typename TImage::PixelType
 
using RegionType = typename TImage::RegionType
 
using Self = ConditionalConstIterator
 
using SizeType = typename TImage::SizeType
 

Public Member Functions

 ConditionalConstIterator ()=default
 
virtual const PixelType Get () const =0
 
virtual const IndexType GetIndex ()=0
 
virtual bool IsAtEnd () const =0
 
virtual bool IsPixelIncluded (const IndexType &index) const =0
 
virtual void operator++ ()=0
 
Selfoperator= (const Self &it)
 
virtual ~ConditionalConstIterator ()=default
 

Static Public Member Functions

static unsigned int GetIteratorDimension ()
 

Static Public Attributes

static constexpr unsigned int NDimension = TImage::ImageDimension
 

Protected Attributes

ImageType::ConstWeakPointer m_Image
 
bool m_IsAtEnd {false}
 
RegionType m_Region
 

Member Typedef Documentation

template<typename TImage >
using itk::ConditionalConstIterator< TImage >::ImageType = TImage

Image type alias support.

Definition at line 60 of file itkConditionalConstIterator.h.

template<typename TImage >
using itk::ConditionalConstIterator< TImage >::IndexType = typename TImage::IndexType

Index type alias support.

Definition at line 51 of file itkConditionalConstIterator.h.

template<typename TImage >
using itk::ConditionalConstIterator< TImage >::InternalPixelType = typename TImage::InternalPixelType

Internal Pixel Type

Definition at line 63 of file itkConditionalConstIterator.h.

template<typename TImage >
using itk::ConditionalConstIterator< TImage >::PixelType = typename TImage::PixelType

External Pixel Type

Definition at line 66 of file itkConditionalConstIterator.h.

template<typename TImage >
using itk::ConditionalConstIterator< TImage >::RegionType = typename TImage::RegionType

Region type alias support.

Definition at line 57 of file itkConditionalConstIterator.h.

template<typename TImage >
using itk::ConditionalConstIterator< TImage >::Self = ConditionalConstIterator

Standard class type aliases.

Definition at line 42 of file itkConditionalConstIterator.h.

template<typename TImage >
using itk::ConditionalConstIterator< TImage >::SizeType = typename TImage::SizeType

Size type alias support.

Definition at line 54 of file itkConditionalConstIterator.h.

Constructor & Destructor Documentation

template<typename TImage >
itk::ConditionalConstIterator< TImage >::ConditionalConstIterator ( )
default

Constructor

template<typename TImage >
virtual itk::ConditionalConstIterator< TImage >::~ConditionalConstIterator ( )
virtualdefault

Destructor

Member Function Documentation

template<typename TImage >
virtual const PixelType itk::ConditionalConstIterator< TImage >::Get ( ) const
pure virtual
template<typename TImage >
virtual const IndexType itk::ConditionalConstIterator< TImage >::GetIndex ( )
pure virtual
template<typename TImage >
static unsigned int itk::ConditionalConstIterator< TImage >::GetIteratorDimension ( )
inlinestatic

Get the dimension (size) of the index.

Definition at line 82 of file itkConditionalConstIterator.h.

template<typename TImage >
virtual bool itk::ConditionalConstIterator< TImage >::IsAtEnd ( ) const
pure virtual
template<typename TImage >
virtual bool itk::ConditionalConstIterator< TImage >::IsPixelIncluded ( const IndexType index) const
pure virtual
template<typename TImage >
virtual void itk::ConditionalConstIterator< TImage >::operator++ ( )
pure virtual
template<typename TImage >
Self& itk::ConditionalConstIterator< TImage >::operator= ( const Self it)
inline

operator= is provided to make sure the handle to the image is properly reference counted.

Definition at line 73 of file itkConditionalConstIterator.h.

References itk::ConditionalConstIterator< TImage >::m_Image, itk::ConditionalConstIterator< TImage >::m_IsAtEnd, and itk::ConditionalConstIterator< TImage >::m_Region.

Member Data Documentation

template<typename TImage >
ImageType::ConstWeakPointer itk::ConditionalConstIterator< TImage >::m_Image
protected
template<typename TImage >
bool itk::ConditionalConstIterator< TImage >::m_IsAtEnd {false}
protected

Is the iterator at the end of its walk?

Definition at line 114 of file itkConditionalConstIterator.h.

Referenced by itk::ConditionalConstIterator< TImage >::operator=().

template<typename TImage >
RegionType itk::ConditionalConstIterator< TImage >::m_Region
protected
template<typename TImage >
constexpr unsigned int itk::ConditionalConstIterator< TImage >::NDimension = TImage::ImageDimension
static

Dimension of the image the iterator walks. This constant is needed so that functions that are templated over image iterator type (as opposed to being templated over pixel type and dimension) can have compile time access to the dimension of the image that the iterator walks.

Definition at line 48 of file itkConditionalConstIterator.h.


The documentation for this class was generated from the following file: