当前位置:网站首页>opencv学习笔记三——图像平滑/去噪处理
opencv学习笔记三——图像平滑/去噪处理
2022-07-07 05:19:00 【我是一个小稻米】
import cv2
import matplotlib.pyplot as plt
import matplotlib.image as mpimg
import numpy as np
from PIL import Image
image1 = mpimg.imread('image.png')
plt.imshow(image1);
1. 均值滤波
一个3×3的卷积核,其中的值都为1
image2 = cv2.blur(image1, (3,3))
plt.imshow(image2)
2. 方框滤波
这里的-1表示,输入与输出的颜色通道数是一致的
一个3×3的卷积核,其中的值都为1
normalize表示在卷积时是否取平均,为false表示,只取和,超过255,直接取255
image3 = cv2.boxFilter(image1, -1, (3,3), normalize=False)
plt.imshow(image3);
3. 高斯滤波
卷积核不全为1了。而是靠近中间的值更大
image4 = cv2.GaussianBlur(image1, (5,5), 1)
plt.imshow(image4)
4. 中值滤波
image5 = cv2.medianBlur(image1, 5)
plt.imshow(image5)
边栏推荐
- Recursive construction of maximum binary tree
- B. Value sequence thinking
- What is the function of paralleling a capacitor on the feedback resistance of the operational amplifier circuit
- 发挥创客教育空间的广泛实用性
- Interactive book delivery - signed version of Oracle DBA work notes
- [quick start of Digital IC Verification] 15. Basic syntax of SystemVerilog learning 2 (operators, type conversion, loops, task/function... Including practical exercises)
- Complex network modeling (II)
- 轻松上手Fluentd,结合 Rainbond 插件市场,日志收集更快捷
- Fast parsing intranet penetration escorts the document encryption industry
- 使用 Nocalhost 开发 Rainbond 上的微服务应用
猜你喜欢
Réplication de vulnérabilité - désrialisation fastjson
eBPF Cilium实战(1) - 基于团队的网络隔离
JS复制图片到剪切板 读取剪切板
拓维信息使用 Rainbond 的云原生落地实践
Empire CMS collection Empire template program general
Explore dry goods! Apifox construction ideas
解析创新教育体系中的创客教育
使用 Nocalhost 开发 Rainbond 上的微服务应用
提高企业产品交付效率系列(1)—— 企业应用一键安装和升级
Easy to understand SSO
随机推荐
Topic not received? Try this
央视太暖心了,手把手教你写HR最喜欢的简历
Leetcode simple question: find the K beauty value of a number
2022 Inner Mongolia latest advanced fire facility operator simulation examination question bank and answers
ZCMU--1396: 队列问题(2)
Quick analysis of Intranet penetration helps the foreign trade management industry cope with a variety of challenges
云原生存储解决方案Rook-Ceph与Rainbond结合的实践
[untitled]
It's too true. There's a reason why I haven't been rich
【雅思口语】安娜口语学习记录 Part3
Excel import function of jeesite form page
LeetCode简单题之字符串中最大的 3 位相同数字
Empire CMS collection Empire template program general
Bayes' law
积分商城管理系统中应包含的四大项
运放电路的反馈电阻上并联一个电容是什么作用
【数字IC验证快速入门】14、SystemVerilog学习之基本语法1(数组、队列、结构体、枚举、字符串...内含实践练习)
贝叶斯定律
Real time monitoring of dog walking and rope pulling AI recognition helps smart city
Roulette chart 2 - writing of roulette chart code