PCL
pcl::GenericImage< P >::const_roi_sample_iterator Class Reference

Immutable region-of-interest pixel sample iterator. More...

#include <Image.h>

Inherits pcl::GenericImage< P >::roi_sample_iterator_base< image_type, sample_pointer >.

Public Types

using image_type = GenericImage< P >
 
using pixel_traits = typename image_type::pixel_traits
 
using sample = typename image_type::sample
 

Public Member Functions

 const_roi_sample_iterator ()=default
 
 const_roi_sample_iterator (const const_roi_sample_iterator &)=default
 
 const_roi_sample_iterator (const image_type &image, const Rect &rect=Rect(0), int channel=-1)
 
 const_roi_sample_iterator (const image_type &image, const sample *i, const sample *j)
 
 const_roi_sample_iterator (const roi_sample_iterator &i)
 
const image_typeImage () const noexcept
 
bool IsValid () const noexcept
 
const_roi_sample_iteratorMoveBy (int dx, int dy) noexcept
 
 operator bool () const noexcept
 
const sampleoperator* () const noexcept
 
const_roi_sample_iteratoroperator++ () noexcept
 
const_roi_sample_iterator operator++ (int) noexcept
 
const_roi_sample_iteratoroperator+= (distance_type delta) noexcept
 
const_roi_sample_iteratoroperator-- () noexcept
 
const_roi_sample_iterator operator-- (int) noexcept
 
const_roi_sample_iteratoroperator-= (distance_type delta) noexcept
 
const_roi_sample_iteratoroperator= (const const_roi_sample_iterator &)=default
 
const_roi_sample_iteratoroperator= (const roi_sample_iterator &i) noexcept
 
const samplePosition () const noexcept
 

Friends

const_roi_sample_iterator operator+ (const const_roi_sample_iterator &i, distance_type delta) noexcept
 
const_roi_sample_iterator operator+ (distance_type delta, const const_roi_sample_iterator &i) noexcept
 
const_roi_sample_iterator operator- (const const_roi_sample_iterator &i, distance_type delta) noexcept
 
bool operator< (const const_roi_sample_iterator &i, const const_roi_sample_iterator &j) noexcept
 
bool operator< (const const_roi_sample_iterator &i, const sample *j) noexcept
 
bool operator< (const sample *i, const const_roi_sample_iterator &j) noexcept
 
bool operator== (const const_roi_sample_iterator &i, const const_roi_sample_iterator &j) noexcept
 
bool operator== (const const_roi_sample_iterator &i, const sample *j) noexcept
 
bool operator== (const sample *i, const const_roi_sample_iterator &j) noexcept
 

Detailed Description

template<class P>
class pcl::GenericImage< P >::const_roi_sample_iterator

An immutable, region-of-interest pixel sample iterator provides read-only, random access to pixel samples within a rectangular subset of a single channel of an image.

Definition at line 1453 of file Image.h.

Member Typedef Documentation

◆ image_type

Represents the type of the iterated image.

Definition at line 1460 of file Image.h.

◆ pixel_traits

Represents the pixel traits class used by the iterated image.

Definition at line 1465 of file Image.h.

◆ sample

template<class P >
using pcl::GenericImage< P >::const_roi_sample_iterator::sample = typename image_type::sample

Represents a pixel sample of the iterated image.

Definition at line 1470 of file Image.h.

Constructor & Destructor Documentation

◆ const_roi_sample_iterator() [1/5]

template<class P >
pcl::GenericImage< P >::const_roi_sample_iterator::const_roi_sample_iterator ( )
default

Default constructor. Initializes an invalid iterator.

◆ const_roi_sample_iterator() [2/5]

template<class P >
pcl::GenericImage< P >::const_roi_sample_iterator::const_roi_sample_iterator ( const image_type image,
const Rect rect = Rect( 0 ),
int  channel = -1 
)
inline

Constructs an immutable, region-of-interest (ROI) pixel sample iterator for one channel of an image.

Parameters
imageThe constant image to iterate.
rectRegion of interest. If an empty rectangle is specified, the current rectangular selection in the image will be used. If the specified rectangle is not empty and extends beyond image boundaries, only the intersection with the image will be used. If that intersection does not exist, then the resulting iterator will be invalid, with an empty iteration range. The default value is an empty rectangle.
channelChannel index. If this parameter is a negative integer, then this object will be initialized to iterate on the currently selected channel of the image. If an invalid (i.e., nonexistent) channel index is specified, then the resulting iterator will also be invalid, with an empty iteration range. The default value is -1.

Definition at line 1501 of file Image.h.

◆ const_roi_sample_iterator() [3/5]

template<class P >
pcl::GenericImage< P >::const_roi_sample_iterator::const_roi_sample_iterator ( const image_type image,
const sample i,
const sample j 
)
inline

Constructs an immutable, region-of-interest (ROI) pixel sample iterator for a range of pixel samples of an image.

Parameters
imageThe constant image to iterate.
iPointer to the first constant pixel sample in the iteration range. The iterator will be initialized to access this pixel sample just after construction.
jEnd of the iteration range. The iterator will be invalid when it reaches (or surpasses) this point.
Note
Both iteration limits i and j must be pointers to constant pixel samples in the same channel of the specified image.

Definition at line 1522 of file Image.h.

◆ const_roi_sample_iterator() [4/5]

template<class P >
pcl::GenericImage< P >::const_roi_sample_iterator::const_roi_sample_iterator ( const roi_sample_iterator i)
inline

Constructs an immutable ROI pixel sample iterator from a mutable ROI pixel sample iterator.

Note
Don't confuse this constructor with the copy constructor for the const_roi_sample_iterator class. Note that the argument to this function is a reference to an object of a different class.

Definition at line 1535 of file Image.h.

◆ const_roi_sample_iterator() [5/5]

template<class P >
pcl::GenericImage< P >::const_roi_sample_iterator::const_roi_sample_iterator ( const const_roi_sample_iterator )
default

Copy constructor.

Member Function Documentation

◆ Image()

template<class P >
const image_type& pcl::GenericImage< P >::const_roi_sample_iterator::Image ( ) const
inlinenoexcept

Returns a reference to the constant image being iterated by this object.

Definition at line 1577 of file Image.h.

◆ IsValid()

template<class P >
bool pcl::GenericImage< P >::const_roi_sample_iterator::IsValid ( ) const
inlinenoexcept

Returns true only if this iterator is valid. A valid iterator defines a valid iterated image and a non-null position.

Definition at line 1568 of file Image.h.

◆ MoveBy()

template<class P >
const_roi_sample_iterator& pcl::GenericImage< P >::const_roi_sample_iterator::MoveBy ( int  dx,
int  dy 
)
inlinenoexcept

Moves this iterator within its rectangular region of interest by the specified horizontal and vertical increments in pixels, dx and dy respectively, relative to its current position. Positive (negative) dx increments move the iterator rightwards (leftwards). Positive (negative) dy increments move the iterator downwards (upwards).

Definition at line 1697 of file Image.h.

◆ operator bool()

template<class P >
pcl::GenericImage< P >::const_roi_sample_iterator::operator bool ( ) const
inlinenoexcept

Boolean type conversion operator. Returns true if this iterator is active. A ROI pixel sample iterator is active if it has not reached (or surpassed) its iteration limit, i.e. the bottom right corner of its iterated region of interest.

Definition at line 1597 of file Image.h.

◆ operator*()

template<class P >
const sample& pcl::GenericImage< P >::const_roi_sample_iterator::operator* ( ) const
inlinenoexcept

Indirection operator. Returns a reference to the constant pixel sample pointed to by this iterator.

Definition at line 1606 of file Image.h.

◆ operator++() [1/2]

template<class P >
const_roi_sample_iterator& pcl::GenericImage< P >::const_roi_sample_iterator::operator++ ( )
inlinenoexcept

Pre-increment operator. Causes this iterator to point to the next pixel sample in the iterated region of interest, then returns a reference to this iterator.

Definition at line 1616 of file Image.h.

◆ operator++() [2/2]

template<class P >
const_roi_sample_iterator pcl::GenericImage< P >::const_roi_sample_iterator::operator++ ( int  )
inlinenoexcept

Post-increment operator. Causes this iterator to point to the next pixel sample in the iterated region of interest. Returns a copy of the iterator as it was before incrementing it.

Definition at line 1627 of file Image.h.

◆ operator+=()

template<class P >
const_roi_sample_iterator& pcl::GenericImage< P >::const_roi_sample_iterator::operator+= ( distance_type  delta)
inlinenoexcept

Scalar assignment/addition operator. Increments this iterator by a distance delta from its current position, within the rectangular region of interest being iterated. Positive increments cause this iterator to move forward (rightwards and downwards) by delta pixel samples. Negative increments move this iterator backward (leftwards and upwards) by delta pixel samples. Returns a reference to this iterator.

Definition at line 1666 of file Image.h.

◆ operator--() [1/2]

template<class P >
const_roi_sample_iterator& pcl::GenericImage< P >::const_roi_sample_iterator::operator-- ( )
inlinenoexcept

Pre-decrement operator. Causes this iterator to point to the previous pixel sample in the iterated region of interest, then returns a reference to this iterator.

Definition at line 1639 of file Image.h.

◆ operator--() [2/2]

template<class P >
const_roi_sample_iterator pcl::GenericImage< P >::const_roi_sample_iterator::operator-- ( int  )
inlinenoexcept

Post-decrement operator. Causes this iterator to point to the previous pixel sample in the iterated region of interest. Returns a copy of the iterator as it was before decrementing it.

Definition at line 1650 of file Image.h.

◆ operator-=()

template<class P >
const_roi_sample_iterator& pcl::GenericImage< P >::const_roi_sample_iterator::operator-= ( distance_type  delta)
inlinenoexcept

Scalar assignment/subtraction operator. Decrements this iterator by a distance delta from its current position, within the rectangular region of interest being iterated. Positive increments cause this iterator to move backward (leftwards and upwards) by delta pixel samples. Negative increments move this iterator forward (rightwards and downwards) by delta pixel samples. Returns a reference to this iterator.

Definition at line 1682 of file Image.h.

◆ operator=() [1/2]

template<class P >
const_roi_sample_iterator& pcl::GenericImage< P >::const_roi_sample_iterator::operator= ( const const_roi_sample_iterator )
default

Copy assignment operator. Returns a reference to this object.

◆ operator=() [2/2]

template<class P >
const_roi_sample_iterator& pcl::GenericImage< P >::const_roi_sample_iterator::operator= ( const roi_sample_iterator i)
inlinenoexcept

Assigns a mutable iterator to this object. Returns a reference to this iterator.

Definition at line 1549 of file Image.h.

◆ Position()

template<class P >
const sample* pcl::GenericImage< P >::const_roi_sample_iterator::Position ( ) const
inlinenoexcept

Returns a pointer to the constant pixel sample pointed to by this iterator.

Definition at line 1586 of file Image.h.

Friends And Related Function Documentation

◆ operator+ [1/2]

template<class P >
const_roi_sample_iterator operator+ ( const const_roi_sample_iterator i,
distance_type  delta 
)
friend

Scalar-to-iterator addition operator. Returns an iterator equivalent to the specified iterator i incremented by a distance delta.

Definition at line 1707 of file Image.h.

◆ operator+ [2/2]

template<class P >
const_roi_sample_iterator operator+ ( distance_type  delta,
const const_roi_sample_iterator i 
)
friend

Iterator-to-scalar addition operator. This operator implements the commutative property of scalar-to-iterator addition.

Definition at line 1718 of file Image.h.

◆ operator-

template<class P >
const_roi_sample_iterator operator- ( const const_roi_sample_iterator i,
distance_type  delta 
)
friend

Scalar-to-iterator subtraction operator. Returns an iterator equal to the specified iterator i decremented by a distance delta.

Definition at line 1729 of file Image.h.

◆ operator< [1/3]

template<class P >
bool operator< ( const const_roi_sample_iterator i,
const const_roi_sample_iterator j 
)
friend

Less than operator. Returns true if the specified iterator i precedes another iterator j.

Definition at line 1767 of file Image.h.

◆ operator< [2/3]

template<class P >
bool operator< ( const const_roi_sample_iterator i,
const sample j 
)
friend

Returns true iff an iterator i precedes a sample pointer j.

Definition at line 1775 of file Image.h.

◆ operator< [3/3]

template<class P >
bool operator< ( const sample i,
const const_roi_sample_iterator j 
)
friend

Returns true iff a sample pointer i precedes an iterator j.

Definition at line 1783 of file Image.h.

◆ operator== [1/3]

template<class P >
bool operator== ( const const_roi_sample_iterator i,
const const_roi_sample_iterator j 
)
friend

Equality operator. Returns true if two iterators i and j point to the same pixel sample.

Definition at line 1740 of file Image.h.

◆ operator== [2/3]

template<class P >
bool operator== ( const const_roi_sample_iterator i,
const sample j 
)
friend

Returns true iff an iterator i and a sample pointer j point to the same pixel sample.

Definition at line 1749 of file Image.h.

◆ operator== [3/3]

template<class P >
bool operator== ( const sample i,
const const_roi_sample_iterator j 
)
friend

Returns true iff a sample pointer i and an iterator j point to the same pixel sample.

Definition at line 1758 of file Image.h.


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