问题描述
OpenCV中有一个IplImage
和CvMat
.他们的全名是什么?
There is a IplImage
and CvMat
in OpenCV. What are the full names of them?
推荐答案
IplImage
中的IPL代表 Intel处理库,它是Intel维护OpenCV的时间.
IPL in IplImage
stands for Intel Processing Library, which is a remnant of when OpenCV was maintained by Intel.
CV代表 Computer Vision Matrix (计算机视觉矩阵),它是图形中常用的数据结构.
CV in cvMat
stands for Computer Vision Matrix, which is a data structure commonly used in graphics.
IplImage
是一个旧结构,我相信它会在内部转换为cv::Mat
,或者如果您已经在cv
名称空间中,则只是转换为Mat
.同样,cvMat
也将转换为Mat
.
IplImage
is an old structure, which I believe is internally converted into cv::Mat
, or just Mat
if you're in the cv
namespace already. Likewise, cvMat
is converted into Mat
as well.
http://opencv.willowgarage.com/documentation/cpp/basic_structures.html?highlight = iplimage
这篇关于OpenCV中的"IplImage"和"CvMat"的全名是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!