对应头文件
#include
eigen2cv() [1/3]
template
static void cv::eigen2cv ( const Eigen::Tensor< _Tp, 3, _layout > & src,
OutputArray dst
)
eigen2cv() [2/3]Converts an Eigen::Tensor to a cv::Mat.----将Eigen::Tensor(张量)类型转换为cv::Mat类型
The method converts an Eigen::Tensor with shape (H x W x C) to a cv::Mat where: H = number of rows W = number of columns C = number of channels
----其中Eigen::Tensor类型为H x W x C,对应cv::Mat的行、列、通道数
template
static void cv::eigen2cv ( const Eigen::Matrix< _Tp, _rows, _cols, _options, _maxRows, _maxCols > & src,
OutputArray dst
)
把Eigen::Matrix类型转换为OutputArray类型
eigen2cv() [3/3]template
static void cv::eigen2cv ( const Eigen::Matrix< _Tp, _rows, _cols, _options, _maxRows, _maxCols > & src,
Matx< _Tp, _rows, _cols > & dst
)
把Eigen::Matrix类型转换为cv::Matx类型, 上面_Tp, _rows, _cols分别代表数据类型、行、列
@meng
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)