D | eigen.hpp | 62 template<typename _Tp, int _rows, int _cols, int _options, int _maxRows, int _maxCols> static inline 63 void eigen2cv( const Eigen::Matrix<_Tp, _rows, _cols, _options, _maxRows, _maxCols>& src, Mat& dst ) in eigen2cv() argument 67 Mat _src(src.cols(), src.rows(), DataType<_Tp>::type, in eigen2cv() 68 (void*)src.data(), src.stride()*sizeof(_Tp)); in eigen2cv() 73 Mat _src(src.rows(), src.cols(), DataType<_Tp>::type, in eigen2cv() 74 (void*)src.data(), src.stride()*sizeof(_Tp)); in eigen2cv() 80 template<typename _Tp, int _rows, int _cols, int _options, int _maxRows, int _maxCols> static inline 81 void eigen2cv( const Eigen::Matrix<_Tp, _rows, _cols, _options, _maxRows, _maxCols>& src, in eigen2cv() argument 82 Matx<_Tp, _rows, _cols>& dst ) in eigen2cv() argument 86 dst = Matx<_Tp, _cols, _rows>(static_cast<const _Tp*>(src.data())).t(); in eigen2cv() [all …]
|