OpenCV  4.10.0
开放源码计算机视觉
正在加载...
正在搜索...
无匹配项
命名空间 | 函数
eigen.hpp 文件参考
#include "opencv2/core.hpp"
eigen.hpp 的包含依赖项关系图

命名空间

命名空间  cv
 与磁盘上的文件关联的文件存储的“黑匣子”表示形式。
 

函数

模板<类型名称 _Tp >
静态 void cv::cv2eigen (const Mat &src, Eigen::Matrix< _Tp, 1, Eigen::Dynamic > &dst)
 
模板<类型名称 _Tp , int _rows, int _cols, int _options, int _maxRows, int _maxCols>
静态 void cv::cv2eigen (const Mat &src, Eigen::Matrix< _Tp, _rows, _cols, _options, _maxRows, _maxCols > &dst)
 
模板<类型名称 _Tp >
静态 void cv::cv2eigen (const Mat &src, Eigen::Matrix< _Tp, Eigen::Dynamic, 1 > &dst)
 
模板<类型名称 _Tp >
静态 void cv::cv2eigen (const Mat &src, Eigen::Matrix< _Tp, Eigen::Dynamic, Eigen::Dynamic > &dst)
 
模板<类型名称 _Tp , int _layout>
静态 void cv::cv2eigen (const Mat &src, Eigen::Tensor< _Tp, 3, _layout > &dst)
 cv::Mat 转换为 Eigen::Tensor。
 
模板<类型名称 _Tp , int _cols>
静态 void cv::cv2eigen (const Matx< _Tp, 1, _cols > &src, Eigen::Matrix< _Tp, 1, Eigen::Dynamic > &dst)
 
模板<类型名称 _Tp , int _rows>
静态 void cv::cv2eigen (const Matx< _Tp, _rows, 1 > &src, Eigen::Matrix< _Tp, Eigen::Dynamic, 1 > &dst)
 
模板<类型名称 _Tp , int _rows, int _cols, int _options, int _maxRows, int _maxCols>
静态 void cv::cv2eigen (const Matx< _Tp, _rows, _cols > &src, Eigen::Matrix< _Tp, _rows, _cols, _options, _maxRows, _maxCols > &dst)
 
template<typename _Tp , int _rows, int _cols>
静态 void cv::cv2eigen (const Matx< _Tp, _rows, _cols > &src, Eigen::Matrix< _Tp, Eigen::Dynamic, Eigen::Dynamic > &dst)
 
模板<类型名称 _Tp >
static Eigen::TensorMap< Eigen::Tensor< _Tp, 3, Eigen::RowMajor > > cv::cv2eigen_tensormap (InputArray src)
 cv::Mat 数据映射到 Eigen::TensorMap。
 
模板<类型名称 _Tp , int _rows, int _cols, int _options, int _maxRows, int _maxCols>
静态 void cv::eigen2cv (const Eigen::Matrix< _Tp, _rows, _cols, _options, _maxRows, _maxCols > &src, Matx< _Tp, _rows, _cols > &dst)
 
模板<类型名称 _Tp , int _rows, int _cols, int _options, int _maxRows, int _maxCols>
静态 void cv::eigen2cv (const Eigen::Matrix< _Tp, _rows, _cols, _options, _maxRows, _maxCols > &src, OutputArray dst)
 
模板<类型名称 _Tp , int _layout>
静态 void cv::eigen2cv (const Eigen::Tensor< _Tp, 3, _layout > &src, OutputArray dst)
 将 Eigen::Tensor 转换为 cv::Mat