- 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 库提供了 ImageFilter 模块,其中包含一组预定义的滤镜,可以使用 Image.filter() 方法应用于图像。该库的当前版本提供了两个预定义的图像增强滤镜,即 EDGE_ENHANCE 和 EDGE_ENHANCE_MORE,用于增强图像中的边缘。
使用 ImageFilter.EDGE_ENHANCE 卷积核增强边缘
此 ImageFilter.EDGE_ENHANCE 卷积核滤镜旨在增强图像中的边缘。
以下是增强图像边缘的步骤:
使用 Image.open() 函数加载输入图像。
将 filter() 函数应用于加载的 Image 对象,并将 ImageFilter.EDGE_ENHANCE 作为参数提供给 Image.filter() 函数,然后它将返回一个带有增强边缘的 PIL.Image.Image 对象。
示例
以下示例演示如何使用 ImageFilter.EDGE_ENHANCE 滤镜卷积核来增强图像中的边缘。
from PIL import Image, ImageFilter # Open the input image image = Image.open('Images/Flower1.jpg') # Apply edge enhancement filter enhanced_image = image.filter(ImageFilter.EDGE_ENHANCE) # Display the original and enhanced images image.show() enhanced_image.show()
输入图像
输出图像
具有增强边缘的输出图像:
使用 EDGE_ENHANCE_MORE 卷积核增强边缘
此方法与 EDGE_ENHANCE 滤镜类似,但它对边缘应用更强的增强效果。
示例
以下示例演示如何使用 EDGE_ENHANCE_MORE 滤镜卷积核更积极地增强图像中的边缘。
from PIL import Image, ImageFilter # Open the input image image = Image.open('Images/Flower1.jpg') # Apply the EDGE_ENHANCE_MORE filter to the image enhanced_image = image.filter(ImageFilter.EDGE_ENHANCE_MORE) # Display the original and enhanced images image.show() enhanced_image.show()
输入图像
输出图像
将 EDGE_ENHANCE_MORE 滤镜应用于输入图像后的输出图像:
广告