摘要: 卷积 LPF(低通滤波) 帮助我们去除噪音,模糊图像,降低图像的高频成分。 如 kernel = [[0, -1, 0], [-1, 5, -1], [0, -1, 0]] HPF (高通滤波)帮助我们找到图像的边缘 ,去除图像的低频成分。 如: kernel = [[0, -1, 0], [-1, 阅读全文
posted @ 2019-07-20 17:15 bingma 阅读(4871) 评论(0) 推荐(0)