import cv2
import numpy as np
from matplotlib import pyplot as plt
# simple averaging filter without scaling parameter
mean_filter = np.ones((3,3))
# creating a guassian filter
x = cv2.getGaussianKernel(5,10)
#x.T 为矩阵转置
gaussian = x*x.T
# different edge detecting filters
# scharr in x-direction
scharr = np.array([[-3, 0, 3],
[-10,0,10],
[-3, 0, 3]])
# sobel in x direction
sobel_x= np.array([[-1, 0, 1],
[-2, 0, 2],
[-1, 0, 1]])
# sobel in y direction
sobel_y= np.array([[-1,-2,-1],
[0, 0, 0],
opencv学习——常见滤波器形状
最新推荐文章于 2024-02-18 16:10:40 发布
本文深入探讨了OpenCV库中常见的滤波器形状,包括高斯滤波、平均滤波和中值滤波。通过实例展示了它们在图像平滑、噪声去除中的效果,并对比了不同滤波器在处理边缘保持和细节损失方面的差异,为图像处理提供了实用的指导。
摘要由CSDN通过智能技术生成