- 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 - ImageOps.equalize() 函数
PIL.ImageOps.equalize() 函数用于均衡图像的直方图,这意味着调整图像中像素的强度值,使直方图更加均匀。
语法
以下是该函数的语法:
PIL.ImageOps.equalize(image, mask=None)
参数
以下是此函数参数的详细信息:
image - 要均衡的图像。这是将应用直方图均衡的输入图像。
mask - 可选掩码。如果提供,则只有掩码选择的像素包含在分析中。掩码用于将均衡限制在图像的特定区域。
返回值
图像 - 该函数返回一个新的图像对象,其中直方图已均衡。均衡过程旨在在输出图像中创建灰度值的均匀分布。
示例
示例 1
以下是如何使用 ImageOps.equalize() 函数均衡输入图像直方图的示例。
from PIL import Image, ImageOps # Open an image file input_image = Image.open("Images/Car_2.jpg") # Apply histogram equalization equalized_image = ImageOps.equalize(input_image) # Display the original and equalized images input_image.show() equalized_image.show()
输出
输入图像
输出图像
示例 2
此示例演示如何使用直方图均衡和掩码来选择性地增强输入图像的对比度。
from PIL import Image, ImageOps, ImageDraw # Open an image file input_image = Image.open("Images/Car_2.jpg") # Define a mask mask = Image.new("L", input_image.size, 0) draw = ImageDraw.Draw(mask) draw.ellipse((140, 50, 260, 170), fill=255) # Apply histogram equalization with the mask equalized_image = ImageOps.equalize(input_image, mask) # Display the original and equalized images input_image.show() equalized_image.show()
输出
输入图像
输出图像
示例 3
这是另一个使用矩形掩码限制输入图像直方图均衡的示例。
from PIL import Image, ImageOps, ImageDraw # Open an image file input_image = Image.open("Images/Car_2.jpg") # Define a mask (you can create a mask using various techniques) mask = Image.new("L", input_image.size, 0) draw = ImageDraw.Draw(mask) draw.rectangle([(100, 100), (300, 300)], fill=255) # Apply histogram equalization with the mask equalized_image = ImageOps.equalize(input_image, mask=mask) # Display the original, and equalized image input_image.show() equalized_image.show()
输出
输入图像
输出图像
python_pillow_function_reference.htm
广告