Zivid C++ API 2.6.1+6cec8609-3
Defining the Future of 3D Machine Vision
Public Types | Public Member Functions | Static Public Attributes | List of all members
Zivid::Matrix< T, rowCount, colCount > Class Template Reference

A fixed size matrix in row major order More...

#include <Zivid/Matrix.h>

Public Types

using ValueType = T
 The type stored in the matrix More...
 
using Iterator = typename Storage::iterator
 The matrix iterator type for mutable access. It iterates over individual matrix elements in row major order. More...
 
using ConstIterator = typename Storage::const_iterator
 The matrix iterator type for immutable access. It iterates over individual matrix elements in row major order. More...
 

Public Member Functions

 Matrix ()=default
 Constructor More...
 
 Matrix (const std::array< T, colCount *rowCount > &arrArr)
 Constructor More...
 
template<typename Iterator >
 Matrix (Iterator beginIt, Iterator endIt)
 Constructor More...
 
 Matrix (std::initializer_list< T > values)
 Constructor More...
 
 Matrix (std::initializer_list< std::initializer_list< T > > values)
 Constructor More...
 
Iterator begin ()
 Iterator to the beginning of the matrix More...
 
Iterator end ()
 Iterator to the end of the matrix More...
 
ConstIterator cbegin () const
 Iterator to the beginning of the matrix More...
 
ConstIterator cend () const
 Iterator to the end of the matrix More...
 
T & at (size_t row, size_t col)
 Access specified element with bounds checking More...
 
const T & at (size_t row, size_t col) const
 Access specified element with bounds checking More...
 
T & operator() (size_t row, size_t col)
 Access specified element without bounds checking More...
 
const T & operator() (size_t row, size_t col) const
 Access specified element without bounds checking More...
 
T * data ()
 Pointer to the underlying data More...
 
const T * data () const
 Pointer to the underlying data More...
 
std::string toString () const
 Get string representation of the Matrix More...
 

Static Public Attributes

static constexpr size_t rows { rowCount }
 The number of rows in the matrix More...
 
static constexpr size_t cols { colCount }
 The number of columns in the matrix More...
 

Detailed Description

template<typename T, size_t rowCount, size_t colCount>
class Zivid::Matrix< T, rowCount, colCount >

A fixed size matrix in row major order

Member Typedef Documentation

◆ ConstIterator

template<typename T , size_t rowCount, size_t colCount>
using Zivid::Matrix< T, rowCount, colCount >::ConstIterator = typename Storage::const_iterator

The matrix iterator type for immutable access. It iterates over individual matrix elements in row major order.

◆ Iterator

template<typename T , size_t rowCount, size_t colCount>
using Zivid::Matrix< T, rowCount, colCount >::Iterator = typename Storage::iterator

The matrix iterator type for mutable access. It iterates over individual matrix elements in row major order.

◆ ValueType

template<typename T , size_t rowCount, size_t colCount>
using Zivid::Matrix< T, rowCount, colCount >::ValueType = T

The type stored in the matrix

Constructor & Destructor Documentation

◆ Matrix() [1/5]

template<typename T , size_t rowCount, size_t colCount>
Zivid::Matrix< T, rowCount, colCount >::Matrix ( )
default

Constructor

◆ Matrix() [2/5]

template<typename T , size_t rowCount, size_t colCount>
Zivid::Matrix< T, rowCount, colCount >::Matrix ( const std::array< T, colCount *rowCount > &  arrArr)
inlineexplicit

Constructor

◆ Matrix() [3/5]

template<typename T , size_t rowCount, size_t colCount>
template<typename Iterator >
Zivid::Matrix< T, rowCount, colCount >::Matrix ( Iterator  beginIt,
Iterator  endIt 
)
inline

Constructor

◆ Matrix() [4/5]

template<typename T , size_t rowCount, size_t colCount>
Zivid::Matrix< T, rowCount, colCount >::Matrix ( std::initializer_list< T >  values)
inlineexplicit

Constructor

◆ Matrix() [5/5]

template<typename T , size_t rowCount, size_t colCount>
Zivid::Matrix< T, rowCount, colCount >::Matrix ( std::initializer_list< std::initializer_list< T > >  values)
inlineexplicit

Constructor

Member Function Documentation

◆ at() [1/2]

template<typename T , size_t rowCount, size_t colCount>
T & Zivid::Matrix< T, rowCount, colCount >::at ( size_t  row,
size_t  col 
)
inline

Access specified element with bounds checking

◆ at() [2/2]

template<typename T , size_t rowCount, size_t colCount>
const T & Zivid::Matrix< T, rowCount, colCount >::at ( size_t  row,
size_t  col 
) const
inline

Access specified element with bounds checking

◆ begin()

template<typename T , size_t rowCount, size_t colCount>
Iterator Zivid::Matrix< T, rowCount, colCount >::begin ( )
inline

Iterator to the beginning of the matrix

◆ cbegin()

template<typename T , size_t rowCount, size_t colCount>
ConstIterator Zivid::Matrix< T, rowCount, colCount >::cbegin ( ) const
inline

Iterator to the beginning of the matrix

◆ cend()

template<typename T , size_t rowCount, size_t colCount>
ConstIterator Zivid::Matrix< T, rowCount, colCount >::cend ( ) const
inline

Iterator to the end of the matrix

◆ data() [1/2]

template<typename T , size_t rowCount, size_t colCount>
T * Zivid::Matrix< T, rowCount, colCount >::data ( )
inline

Pointer to the underlying data

◆ data() [2/2]

template<typename T , size_t rowCount, size_t colCount>
const T * Zivid::Matrix< T, rowCount, colCount >::data ( ) const
inline

Pointer to the underlying data

◆ end()

template<typename T , size_t rowCount, size_t colCount>
Iterator Zivid::Matrix< T, rowCount, colCount >::end ( )
inline

Iterator to the end of the matrix

◆ operator()() [1/2]

template<typename T , size_t rowCount, size_t colCount>
T & Zivid::Matrix< T, rowCount, colCount >::operator() ( size_t  row,
size_t  col 
)
inline

Access specified element without bounds checking

◆ operator()() [2/2]

template<typename T , size_t rowCount, size_t colCount>
const T & Zivid::Matrix< T, rowCount, colCount >::operator() ( size_t  row,
size_t  col 
) const
inline

Access specified element without bounds checking

◆ toString()

template<typename T , size_t rowCount, size_t colCount>
std::string Zivid::Matrix< T, rowCount, colCount >::toString ( ) const
inline

Get string representation of the Matrix

Returns
Matrix as string

Member Data Documentation

◆ cols

template<typename T , size_t rowCount, size_t colCount>
constexpr size_t Zivid::Matrix< T, rowCount, colCount >::cols { colCount }
staticconstexpr

The number of columns in the matrix

◆ rows

template<typename T , size_t rowCount, size_t colCount>
constexpr size_t Zivid::Matrix< T, rowCount, colCount >::rows { rowCount }
staticconstexpr

The number of rows in the matrix


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