美文网首页
openCv api函数说明(getStructuringEle

openCv api函数说明(getStructuringEle

作者: 电火花_险 | 来源:发表于2020-09-21 12:09 被阅读0次

getStructuringElement函数会返回指定形状和尺寸的结构元素。

上面是什么意思呢?

getStructuringElement函数会返回    有返回值

返回什么?

指定形状  shape值(可选)

矩形:MORPH_RECT;

交叉形:MORPH_CROSS;

椭圆形:MORPH_ELLIPSE;

指定尺寸  (esize)

SIze(3,3)  一个3*3的矩阵

综合起来也就是创建了一个3*3算子,并返回个指定变量。

Mat getStructuringElement(int shape, Size esize, Point anchor = Point(-1, -1));

相关文章

网友评论

      本文标题:openCv api函数说明(getStructuringEle

      本文链接:https://www.haomeiwen.com/subject/bslvyktx.html