Eigen::internal::image_retval_base< DecompositionType_ > Class Template Reference

#include <Image.h>

+ Inheritance diagram for Eigen::internal::image_retval_base< DecompositionType_ >:

Public Types

typedef DecompositionType_ DecompositionType
 
typedef DecompositionType::MatrixType MatrixType
 
typedef ReturnByValue< image_retval_baseBase
 
- Public Types inherited from Eigen::ReturnByValue< image_retval_base< DecompositionType_ > >
typedef internal::traits< image_retval_base< DecompositionType_ > >::ReturnType ReturnType
 
typedef internal::dense_xpr_base< ReturnByValue >::type Base
 

Public Member Functions

 image_retval_base (const DecompositionType &dec, const MatrixType &originalMatrix)
 
Index rows () const
 
Index cols () const
 
Index rank () const
 
const DecompositionTypedec () const
 
const MatrixTypeoriginalMatrix () const
 
template<typename Dest >
void evalTo (Dest &dst) const
 
- Public Member Functions inherited from Eigen::ReturnByValue< image_retval_base< DecompositionType_ > >
EIGEN_DEVICE_FUNC void evalTo (Dest &dst) const
 
EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR Index rows () const EIGEN_NOEXCEPT
 
EIGEN_DEVICE_FUNC EIGEN_CONSTEXPR Index cols () const EIGEN_NOEXCEPT
 
const Unusablecoeff (Index) const
 
const Unusablecoeff (Index, Index) const
 
UnusablecoeffRef (Index)
 
UnusablecoeffRef (Index, Index)
 

Protected Attributes

const DecompositionTypem_dec
 
Index m_rank
 
Index m_cols
 
const MatrixTypem_originalMatrix
 

Member Typedef Documentation

◆ Base

template<typename DecompositionType_ >
typedef ReturnByValue<image_retval_base> Eigen::internal::image_retval_base< DecompositionType_ >::Base

◆ DecompositionType

template<typename DecompositionType_ >
typedef DecompositionType_ Eigen::internal::image_retval_base< DecompositionType_ >::DecompositionType

◆ MatrixType

template<typename DecompositionType_ >
typedef DecompositionType::MatrixType Eigen::internal::image_retval_base< DecompositionType_ >::MatrixType

Constructor & Destructor Documentation

◆ image_retval_base()

template<typename DecompositionType_ >
Eigen::internal::image_retval_base< DecompositionType_ >::image_retval_base ( const DecompositionType dec,
const MatrixType originalMatrix 
)
inline
45  : m_dec(dec), m_rank(dec.rank()), m_cols(m_rank == 0 ? 1 : m_rank), m_originalMatrix(originalMatrix) {}
const MatrixType & m_originalMatrix
Definition: Image.h:61
const DecompositionType & m_dec
Definition: Image.h:59
const MatrixType & originalMatrix() const
Definition: Image.h:51
Index m_cols
Definition: Image.h:60
const DecompositionType & dec() const
Definition: Image.h:50
Index m_rank
Definition: Image.h:60

Member Function Documentation

◆ cols()

◆ dec()

template<typename DecompositionType_ >
const DecompositionType& Eigen::internal::image_retval_base< DecompositionType_ >::dec ( ) const
inline

◆ evalTo()

template<typename DecompositionType_ >
template<typename Dest >
void Eigen::internal::image_retval_base< DecompositionType_ >::evalTo ( Dest &  dst) const
inline
54  {
55  static_cast<const image_retval<DecompositionType>*>(this)->evalTo(dst);
56  }
void evalTo(Dest &dst) const
Definition: Image.h:54

◆ originalMatrix()

template<typename DecompositionType_ >
const MatrixType& Eigen::internal::image_retval_base< DecompositionType_ >::originalMatrix ( ) const
inline

◆ rank()

template<typename DecompositionType_ >
Index Eigen::internal::image_retval_base< DecompositionType_ >::rank ( ) const
inline

◆ rows()

Member Data Documentation

◆ m_cols

template<typename DecompositionType_ >
Index Eigen::internal::image_retval_base< DecompositionType_ >::m_cols
protected

◆ m_dec

◆ m_originalMatrix

template<typename DecompositionType_ >
const MatrixType& Eigen::internal::image_retval_base< DecompositionType_ >::m_originalMatrix
protected

◆ m_rank

template<typename DecompositionType_ >
Index Eigen::internal::image_retval_base< DecompositionType_ >::m_rank
protected

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