LSSTApplications  18.1.0
LSSTDataManagementBasePackage
Public Types | Public Member Functions | Protected Attributes | List of all members
lsst::afw::image::MaskedImage< ImagePixelT, MaskPixelT, VariancePixelT >::const_MaskedImageIterator< ImageIterator, MaskIterator, VarianceIterator > Class Template Reference

An const iterator to the MaskedImage. More...

#include <MaskedImage.h>

Inheritance diagram for lsst::afw::image::MaskedImage< ImagePixelT, MaskPixelT, VariancePixelT >::const_MaskedImageIterator< ImageIterator, MaskIterator, VarianceIterator >:
lsst::afw::image::MaskedImage< ImagePixelT, MaskPixelT, VariancePixelT >::MaskedImageIteratorBase< detail::const_iterator_type< ImageIterator >::type, detail::const_iterator_type< MaskIterator >::type, detail::const_iterator_type< VarianceIterator >::type, ConstReference >

Public Types

typedef boost::zip_iterator< IMV_iterator_tuple >::reference IMV_tuple
 The underlying iterator tuple. More...
 
typedef Pixel type
 Type pointed to by the iterator. More...
 

Public Member Functions

 const_MaskedImageIterator (MaskedImageIterator< ImageIterator, MaskIterator, VarianceIterator > const &iter)
 
const_MaskedImageIteratoroperator+ (std::ptrdiff_t delta)
 Return a const_MaskedImageIterator that's delta beyond this. More...
 
ConstReference< ImagePixelT >::type image ()
 Return (a reference to) the image part of the Pixel pointed at by the iterator. More...
 
ConstReference< MaskPixelT >::type mask ()
 Return (a reference to) the mask part of the Pixel pointed at by the iterator. More...
 
ConstReference< VariancePixelT >::type variance ()
 Return (a reference to) the variance part of the Pixel pointed at by the iterator. More...
 
const IMV_iterator_tuple get_iterator_tuple () const
 Return the underlying iterator tuple. More...
 
MaskedImageIteratorBaseoperator+= (std::ptrdiff_t delta)
 Increment the iterator by delta More...
 
MaskedImageIteratorBaseoperator-= (std::ptrdiff_t delta)
 Decrement the iterator by delta More...
 
MaskedImageIteratorBaseoperator++ ()
 Increment the iterator (prefix) More...
 
MaskedImageIteratorBase operator++ (int)
 Increment the iterator (postfix) More...
 
std::ptrdiff_t operator- (MaskedImageIteratorBase const &rhs)
 Return the distance between two iterators. More...
 
bool operator== (MaskedImageIteratorBase const &rhs)
 Return true if the lhs equals the rhs. More...
 
bool operator!= (MaskedImageIteratorBase const &rhs)
 Return true if the lhs doesn't equal the rhs. More...
 
bool operator< (MaskedImageIteratorBase const &rhs)
 Return true if the lhs is less than the rhs. More...
 
 operator Pixel () const
 Convert an iterator to a Pixel. More...
 
Pixel operator* ()
 Dereference the iterator, returning a Pixel. More...
 
const Pixel operator* () const
 Dereference the iterator, returning a const Pixel. More...
 

Protected Attributes

boost::zip_iterator< IMV_iterator_tuple > _iter
 

Detailed Description

template<typename ImagePixelT, typename MaskPixelT = lsst::afw::image::MaskPixel, typename VariancePixelT = lsst::afw::image::VariancePixel>
template<typename ImageIterator, typename MaskIterator, typename VarianceIterator>
class lsst::afw::image::MaskedImage< ImagePixelT, MaskPixelT, VariancePixelT >::const_MaskedImageIterator< ImageIterator, MaskIterator, VarianceIterator >

An const iterator to the MaskedImage.

An const iterator for a MaskedImage.

Definition at line 103 of file MaskedImage.h.

Member Typedef Documentation

◆ IMV_tuple

typedef boost::zip_iterator<IMV_iterator_tuple>::reference lsst::afw::image::MaskedImage< ImagePixelT, MaskPixelT, VariancePixelT >::MaskedImageIteratorBase< detail::const_iterator_type< ImageIterator >::type , detail::const_iterator_type< MaskIterator >::type , detail::const_iterator_type< VarianceIterator >::type , ConstReference >::IMV_tuple
inherited

The underlying iterator tuple.

Note
not really for public consumption; could be made protected

Definition at line 126 of file MaskedImage.h.

◆ type

typedef Pixel lsst::afw::image::MaskedImage< ImagePixelT, MaskPixelT, VariancePixelT >::MaskedImageIteratorBase< detail::const_iterator_type< ImageIterator >::type , detail::const_iterator_type< MaskIterator >::type , detail::const_iterator_type< VarianceIterator >::type , ConstReference >::type
inherited

Type pointed to by the iterator.

Definition at line 133 of file MaskedImage.h.

Constructor & Destructor Documentation

◆ const_MaskedImageIterator()

template<typename ImagePixelT, typename MaskPixelT = lsst::afw::image::MaskPixel, typename VariancePixelT = lsst::afw::image::VariancePixel>
template<typename ImageIterator , typename MaskIterator , typename VarianceIterator >
lsst::afw::image::MaskedImage< ImagePixelT, MaskPixelT, VariancePixelT >::const_MaskedImageIterator< ImageIterator, MaskIterator, VarianceIterator >::const_MaskedImageIterator ( MaskedImageIterator< ImageIterator, MaskIterator, VarianceIterator > const &  iter)
inline

Definition at line 242 of file MaskedImage.h.

244  : MaskedImageIteratorBase_t(
245  const_ImageIterator(iter.get_iterator_tuple().template get<0>()),
246  const_MaskIterator(iter.get_iterator_tuple().template get<1>()),
247  const_VarianceIterator(iter.get_iterator_tuple().template get<2>())) {
248  ;
249  }

Member Function Documentation

◆ get_iterator_tuple()

const IMV_iterator_tuple lsst::afw::image::MaskedImage< ImagePixelT, MaskPixelT, VariancePixelT >::MaskedImageIteratorBase< detail::const_iterator_type< ImageIterator >::type , detail::const_iterator_type< MaskIterator >::type , detail::const_iterator_type< VarianceIterator >::type , ConstReference >::get_iterator_tuple ( ) const
inlineinherited

Return the underlying iterator tuple.

Note
not really for public consumption; could be made protected

Definition at line 151 of file MaskedImage.h.

◆ image()

ConstReference <ImagePixelT>::type lsst::afw::image::MaskedImage< ImagePixelT, MaskPixelT, VariancePixelT >::MaskedImageIteratorBase< detail::const_iterator_type< ImageIterator >::type , detail::const_iterator_type< MaskIterator >::type , detail::const_iterator_type< VarianceIterator >::type , ConstReference >::image ( )
inlineinherited

Return (a reference to) the image part of the Pixel pointed at by the iterator.

Definition at line 140 of file MaskedImage.h.

◆ mask()

ConstReference <MaskPixelT>::type lsst::afw::image::MaskedImage< ImagePixelT, MaskPixelT, VariancePixelT >::MaskedImageIteratorBase< detail::const_iterator_type< ImageIterator >::type , detail::const_iterator_type< MaskIterator >::type , detail::const_iterator_type< VarianceIterator >::type , ConstReference >::mask ( )
inlineinherited

Return (a reference to) the mask part of the Pixel pointed at by the iterator.

Definition at line 143 of file MaskedImage.h.

◆ operator Pixel()

lsst::afw::image::MaskedImage< ImagePixelT, MaskPixelT, VariancePixelT >::MaskedImageIteratorBase< detail::const_iterator_type< ImageIterator >::type , detail::const_iterator_type< MaskIterator >::type , detail::const_iterator_type< VarianceIterator >::type , ConstReference >::operator Pixel ( ) const
inlineinherited

Convert an iterator to a Pixel.

Definition at line 193 of file MaskedImage.h.

193  {
194  return Pixel(_iter->template get<0>()[0], _iter->template get<1>()[0],
195  _iter->template get<2>()[0]);
196  }
float Pixel
Typedefs to be used for pixel values.
Definition: common.h:37

◆ operator!=()

bool lsst::afw::image::MaskedImage< ImagePixelT, MaskPixelT, VariancePixelT >::MaskedImageIteratorBase< detail::const_iterator_type< ImageIterator >::type , detail::const_iterator_type< MaskIterator >::type , detail::const_iterator_type< VarianceIterator >::type , ConstReference >::operator!= ( MaskedImageIteratorBase< detail::const_iterator_type< ImageIterator >::type, detail::const_iterator_type< MaskIterator >::type, detail::const_iterator_type< VarianceIterator >::type, ConstReference > const &  rhs)
inlineinherited

Return true if the lhs doesn't equal the rhs.

Definition at line 185 of file MaskedImage.h.

◆ operator*() [1/2]

Pixel lsst::afw::image::MaskedImage< ImagePixelT, MaskPixelT, VariancePixelT >::MaskedImageIteratorBase< detail::const_iterator_type< ImageIterator >::type , detail::const_iterator_type< MaskIterator >::type , detail::const_iterator_type< VarianceIterator >::type , ConstReference >::operator* ( )
inlineinherited

Dereference the iterator, returning a Pixel.

Definition at line 199 of file MaskedImage.h.

◆ operator*() [2/2]

const Pixel lsst::afw::image::MaskedImage< ImagePixelT, MaskPixelT, VariancePixelT >::MaskedImageIteratorBase< detail::const_iterator_type< ImageIterator >::type , detail::const_iterator_type< MaskIterator >::type , detail::const_iterator_type< VarianceIterator >::type , ConstReference >::operator* ( ) const
inlineinherited

Dereference the iterator, returning a const Pixel.

Definition at line 201 of file MaskedImage.h.

◆ operator+()

template<typename ImagePixelT, typename MaskPixelT = lsst::afw::image::MaskPixel, typename VariancePixelT = lsst::afw::image::VariancePixel>
template<typename ImageIterator , typename MaskIterator , typename VarianceIterator >
const_MaskedImageIterator& lsst::afw::image::MaskedImage< ImagePixelT, MaskPixelT, VariancePixelT >::const_MaskedImageIterator< ImageIterator, MaskIterator, VarianceIterator >::operator+ ( std::ptrdiff_t  delta)
inline

Return a const_MaskedImageIterator that's delta beyond this.

Definition at line 251 of file MaskedImage.h.

251  {
252  const_MaskedImageIterator lhs = *this;
253  lhs += delta;
254 
255  return lhs;
256  }
const_MaskedImageIterator(MaskedImageIterator< ImageIterator, MaskIterator, VarianceIterator > const &iter)
Definition: MaskedImage.h:242

◆ operator++() [1/2]

MaskedImageIteratorBase& lsst::afw::image::MaskedImage< ImagePixelT, MaskPixelT, VariancePixelT >::MaskedImageIteratorBase< detail::const_iterator_type< ImageIterator >::type , detail::const_iterator_type< MaskIterator >::type , detail::const_iterator_type< VarianceIterator >::type , ConstReference >::operator++ ( )
inlineinherited

◆ operator++() [2/2]

MaskedImageIteratorBase lsst::afw::image::MaskedImage< ImagePixelT, MaskPixelT, VariancePixelT >::MaskedImageIteratorBase< detail::const_iterator_type< ImageIterator >::type , detail::const_iterator_type< MaskIterator >::type , detail::const_iterator_type< VarianceIterator >::type , ConstReference >::operator++ ( int  )
inlineinherited

Increment the iterator (postfix)

Definition at line 171 of file MaskedImage.h.

171  { // postfix
172  MaskedImageIteratorBase tmp(*this);
173  _iter++;
174  return tmp;
175  }
MaskedImageIteratorBase(detail::const_iterator_type< ImageIterator >::type const &img, detail::const_iterator_type< MaskIterator >::type const &msk, detail::const_iterator_type< VarianceIterator >::type const &var)
Construct a MaskedImageIteratorBase from the image/mask/variance iterators.
Definition: MaskedImage.h:136

◆ operator+=()

MaskedImageIteratorBase& lsst::afw::image::MaskedImage< ImagePixelT, MaskPixelT, VariancePixelT >::MaskedImageIteratorBase< detail::const_iterator_type< ImageIterator >::type , detail::const_iterator_type< MaskIterator >::type , detail::const_iterator_type< VarianceIterator >::type , ConstReference >::operator+= ( std::ptrdiff_t  delta)
inlineinherited

Increment the iterator by delta

Parameters
deltahow far to move the iterator

Definition at line 154 of file MaskedImage.h.

◆ operator-()

std::ptrdiff_t lsst::afw::image::MaskedImage< ImagePixelT, MaskPixelT, VariancePixelT >::MaskedImageIteratorBase< detail::const_iterator_type< ImageIterator >::type , detail::const_iterator_type< MaskIterator >::type , detail::const_iterator_type< VarianceIterator >::type , ConstReference >::operator- ( MaskedImageIteratorBase< detail::const_iterator_type< ImageIterator >::type, detail::const_iterator_type< MaskIterator >::type, detail::const_iterator_type< VarianceIterator >::type, ConstReference > const &  rhs)
inlineinherited

Return the distance between two iterators.

Definition at line 177 of file MaskedImage.h.

◆ operator-=()

MaskedImageIteratorBase& lsst::afw::image::MaskedImage< ImagePixelT, MaskPixelT, VariancePixelT >::MaskedImageIteratorBase< detail::const_iterator_type< ImageIterator >::type , detail::const_iterator_type< MaskIterator >::type , detail::const_iterator_type< VarianceIterator >::type , ConstReference >::operator-= ( std::ptrdiff_t  delta)
inlineinherited

Decrement the iterator by delta

Parameters
deltahow far to move the iterator

Definition at line 160 of file MaskedImage.h.

◆ operator<()

bool lsst::afw::image::MaskedImage< ImagePixelT, MaskPixelT, VariancePixelT >::MaskedImageIteratorBase< detail::const_iterator_type< ImageIterator >::type , detail::const_iterator_type< MaskIterator >::type , detail::const_iterator_type< VarianceIterator >::type , ConstReference >::operator< ( MaskedImageIteratorBase< detail::const_iterator_type< ImageIterator >::type, detail::const_iterator_type< MaskIterator >::type, detail::const_iterator_type< VarianceIterator >::type, ConstReference > const &  rhs)
inlineinherited

Return true if the lhs is less than the rhs.

Definition at line 189 of file MaskedImage.h.

◆ operator==()

bool lsst::afw::image::MaskedImage< ImagePixelT, MaskPixelT, VariancePixelT >::MaskedImageIteratorBase< detail::const_iterator_type< ImageIterator >::type , detail::const_iterator_type< MaskIterator >::type , detail::const_iterator_type< VarianceIterator >::type , ConstReference >::operator== ( MaskedImageIteratorBase< detail::const_iterator_type< ImageIterator >::type, detail::const_iterator_type< MaskIterator >::type, detail::const_iterator_type< VarianceIterator >::type, ConstReference > const &  rhs)
inlineinherited

Return true if the lhs equals the rhs.

Definition at line 181 of file MaskedImage.h.

◆ variance()

ConstReference <VariancePixelT>::type lsst::afw::image::MaskedImage< ImagePixelT, MaskPixelT, VariancePixelT >::MaskedImageIteratorBase< detail::const_iterator_type< ImageIterator >::type , detail::const_iterator_type< MaskIterator >::type , detail::const_iterator_type< VarianceIterator >::type , ConstReference >::variance ( )
inlineinherited

Return (a reference to) the variance part of the Pixel pointed at by the iterator.

Definition at line 146 of file MaskedImage.h.

Member Data Documentation

◆ _iter

boost::zip_iterator<IMV_iterator_tuple> lsst::afw::image::MaskedImage< ImagePixelT, MaskPixelT, VariancePixelT >::MaskedImageIteratorBase< detail::const_iterator_type< ImageIterator >::type , detail::const_iterator_type< MaskIterator >::type , detail::const_iterator_type< VarianceIterator >::type , ConstReference >::_iter
protectedinherited

Definition at line 204 of file MaskedImage.h.


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