OpenCV2:总结篇 imgproc(图像处理模块)
Posted k5bg
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了OpenCV2:总结篇 imgproc(图像处理模块)相关的知识,希望对你有一定的参考价值。
一.简介
二.常用的函数
void erode( InputArray src, OutputArray dst, InputArray kernel, Point anchor = Point(-1, -1), int iterations = 1, int borderType = BORDER_CONSTANT, const Scalar& borderValue = morphologyDefaultBorderValue() )
void dilate( InputArray src, OutputArray dst, InputArray kernel, Point anchor = Point(-1, -1), int iterations = 1, int borderType = BORDER_CONSTANT, const Scalar& borderValue = morphologyDefaultBorderValue() )
- src
输入图像为二值图像或灰度图像
以上是关于OpenCV2:总结篇 imgproc(图像处理模块)的主要内容,如果未能解决你的问题,请参考以下文章