![]() |
|
#include <iterators.h>
Public Types | |
using | difference_type = std::ptrdiff_t |
using | value_type = T |
using | pointer = value_type * |
using | reference = value_type & |
using | iterator_category = std::forward_iterator_tag |
Public Member Functions | |
ContiguousIterator (Image &img, std::vector< int > pos={}) | |
ContiguousIterator & | operator++ () |
T & | operator * () const |
T * | operator-> () const |
bool | operator== (const ContiguousIterator &rhs) const |
bool | operator!= (const ContiguousIterator &rhs) const |
Public Attributes | |
uint8_t * | ptr_ |
Image * | img_ |
Definition at line 79 of file iterators.h.
using ecvl::ContiguousIterator< T >::difference_type = std::ptrdiff_t |
Definition at line 81 of file iterators.h.
using ecvl::ContiguousIterator< T >::iterator_category = std::forward_iterator_tag |
Definition at line 85 of file iterators.h.
using ecvl::ContiguousIterator< T >::pointer = value_type* |
Definition at line 83 of file iterators.h.
using ecvl::ContiguousIterator< T >::reference = value_type& |
Definition at line 84 of file iterators.h.
using ecvl::ContiguousIterator< T >::value_type = T |
Definition at line 82 of file iterators.h.
ContiguousIterator::ContiguousIterator | ( | Image & | img, |
std::vector< int > | pos = {} |
||
) |
|
inline |
Definition at line 92 of file iterators.h.
|
inline |
Definition at line 95 of file iterators.h.
|
inline |
Definition at line 91 of file iterators.h.
|
inline |
Definition at line 93 of file iterators.h.
|
inline |
Definition at line 94 of file iterators.h.
Image* ecvl::ContiguousIterator< T >::img_ |
Definition at line 88 of file iterators.h.
uint8_t* ecvl::ContiguousIterator< T >::ptr_ |
Definition at line 87 of file iterators.h.