【Opencv 源码剖析】 一、 create函数

本文深入剖析了OpenCV中Mat类的create()函数,详细解释了其内部逻辑,包括当矩阵维度、行数、列数及类型匹配时的处理。此外,提到了与拷贝构造函数的关系。
摘要由CSDN通过智能技术生成

1.

inline Mat::Mat(int _rows, int _cols, int _type) : size(&rows)
{
    initEmpty();//将data、cols、rows等初始化为0
    create(_rows, _cols, _type);
}

 

2.

inline Mat::Mat(int _rows, int _cols, int _type, const Scalar& _s) : size(&rows)
{
    initEmpty();
    create(_rows, _cols, _type);
    *this = _s;//给矩阵像素赋值为_s
}

 

3.

inline void Mat::create(int _rows, int _cols, int _type)
{
_type &= TYPE_MASK;
if( dims <= 2 && rows == _rows && cols == _cols && type() == _type && data ) //如果cols rows data已经存在,则返回,什么都不用做
return;
int sz[] = {_rows, _cols};
create(2, sz, _type);
}

4.

void Mat::create(int d, const int* _sizes, int _type)
{
    
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值