OpenCV中的"IplImage"和"CvMat"的全名是什么? [英] What's the full name of `IplImage` and `CvMat` in OpenCV?

查看:119
本文介绍了OpenCV中的"IplImage"和"CvMat"的全名是什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

OpenCV中有一个IplImageCvMat.他们的全名是什么?

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"的全名是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆