- Python Pillow 教程
- Python Pillow - 首页
- Python Pillow - 概述
- Python Pillow - 环境设置
- 基本图像操作
- Python Pillow - 图像处理
- Python Pillow - 调整图像大小
- Python Pillow - 翻转和旋转图像
- Python Pillow - 裁剪图像
- Python Pillow - 为图像添加边框
- Python Pillow - 识别图像文件
- Python Pillow - 合并图像
- Python Pillow - 剪切和粘贴图像
- Python Pillow - 滚动图像
- Python Pillow - 在图像上写入文本
- Python Pillow - ImageDraw 模块
- Python Pillow - 连接两张图像
- Python Pillow - 创建缩略图
- Python Pillow - 创建水印
- Python Pillow - 图像序列
- Python Pillow 颜色转换
- Python Pillow - 图像上的颜色
- Python Pillow - 使用颜色创建图像
- Python Pillow - 将颜色字符串转换为 RGB 颜色值
- Python Pillow - 将颜色字符串转换为灰度值
- Python Pillow - 通过更改像素值来更改颜色
- 图像处理
- Python Pillow - 降噪
- Python Pillow - 更改图像模式
- Python Pillow - 图像合成
- Python Pillow - 使用 Alpha 通道
- Python Pillow - 应用透视变换
- 图像滤镜
- Python Pillow - 为图像添加滤镜
- Python Pillow - 卷积滤镜
- Python Pillow - 模糊图像
- Python Pillow - 边缘检测
- Python Pillow - 浮雕图像
- Python Pillow - 增强边缘
- Python Pillow - 锐化蒙版滤镜
- 图像增强和校正
- Python Pillow - 增强对比度
- Python Pillow - 增强锐度
- Python Pillow - 增强颜色
- Python Pillow - 校正色彩平衡
- Python Pillow - 去噪
- 图像分析
- Python Pillow - 提取图像元数据
- Python Pillow - 识别颜色
- 高级主题
- Python Pillow - 创建动画 GIF
- Python Pillow - 批量处理图像
- Python Pillow - 转换图像文件格式
- Python Pillow - 为图像添加填充
- Python Pillow - 颜色反转
- Python Pillow - 使用 NumPy 进行机器学习
- Python Pillow 与 Tkinter BitmapImage 和 PhotoImage 对象
- Image 模块
- Python Pillow - 图像混合
- Python Pillow 有用资源
- Python Pillow - 快速指南
- Python Pillow - 函数参考
- Python Pillow - 有用资源
- Python Pillow - 讨论
Python Pillow - 锐化蒙版滤镜
锐化蒙版是一种广泛应用于图像处理中的图像锐化技术。锐化蒙版的基本概念是使用图像的负像的软化或不锐化版本来创建蒙版。然后,将此锐化蒙版与原始正像合并,从而得到原始图像的较少模糊的版本,使其更清晰。
Python pillow(PIL) 库在其 ImageFilter 模块中提供了一个名为 UnsharpMask() 的类,用于将锐化蒙版滤镜应用于图像。
锐化蒙版滤镜
ImageFilter.UnsharpMask() 类表示锐化蒙版滤镜,用于增强图像锐度。
以下是 ImageFilter.UnsharpMask() 类的语法:
class PIL.ImageFilter.UnsharpMask(radius=2, percent=150, threshold=3)
其中,
radius - 该参数控制模糊半径。半径影响要增强的边缘的大小。较小的半径会锐化较小的细节,而较大的半径会在物体周围产生光晕。调整半径和强度会相互影响;减小一个允许另一个产生更大的影响。
percent - 它以百分比的形式确定锐化蒙版的强度。百分比控制锐化效果的强度或幅度。它决定在物体边缘添加多少对比度。较高的强度会导致更明显的锐化效果,使边缘边界更暗和更亮。它不会影响边缘边框的宽度。
threshold - 阈值控制需要锐化的亮度变化的最小值。它决定了相邻色调值需要有多大的差异才能使滤镜生效。较高的阈值可以防止平滑区域出现斑点。较低的值会锐化更多,而较高的值会保留对比度较低的区域。
示例
以下示例使用 ImageFilter.UnsharpMask() 类和 Image.filter() 方法(使用默认值)将锐化蒙版滤镜应用于图像。
from PIL import Image, ImageFilter # Open the image original_image = Image.open('Images/Flower1.jpg') # Apply the Unsharp Mask filter with default parameter values sharpened_image = original_image.filter(ImageFilter.UnsharpMask()) # Display the original image original_image.show() # Display the sharpened image sharpened_image.show()
输出
输入图像:
使用默认参数值应用锐化蒙版滤镜后的输出图像:
示例
这是另一个示例,它使用不同的参数值将锐化蒙版滤镜应用于图像。
from PIL import Image, ImageFilter # Open the image using Pillow original_image = Image.open('Images/Flower1.jpg') # Apply the Unsharp Mask filter with custom parameters sharpened_image = original_image.filter(ImageFilter.UnsharpMask(radius=4, percent=200, threshold=3)) # Display the original image original_image.show() # Display the sharpened image sharpened_image.show()
输出
输入图像:
使用自定义参数值应用锐化蒙版滤镜后的输出图像:
广告