搜索资源列表
filter
- 用不同的核进行图像的二维滤波。直接用cvFilter2D得到的结果与cvLaplace得到的结果有所不同-With different two-dimensional nuclear for image filtering. The results obtained directly cvFilter2D the results obtained with different cvLaplace
cvFilter2D
- 本代码使用OpenCV对图像进行滤波,只需要修改一下掩膜模板,就可以采用高斯,PREWITT算子及二维滤波。-This code uses OpenCV for image filtering, only need to modify the mask template, you can use Gaussian, PREWITT operator and two-dimensional filtering.
cvFilter2D-opencv
- 用OpenCV实现cvFilter2D的视频去噪-With the OpenCV implementation cvFilter2D the video denoising
include
- 用不同的核进行图像的二维滤波 函数cvSmooth实现各种方法的图形平滑。 一般来说,图像平滑主要是为了消除噪声。图像的常见噪声主要有加性噪声、乘性噪声和量化噪声等。由于图像的能量主要集在低频部分,而噪声所在频段主要在高频段,因此通常都是采用低通滤波的方法消除噪声。 函数cvFilter2D对图像做卷积运算。 对图像进行线性滤波,支持替换方式操作。当核运算部份超出输入图像时,边界外面的像素值等于离它最近的图像像素值。