- 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.solarize() 函数
PIL.ImageOps.solarize 函数用于反转灰度图像中超过指定阈值的像素值。
语法
以下是函数的语法:
PIL.ImageOps.solarize(image, threshold=128)
参数
以下是此函数参数的详细信息:
image - 要进行太阳化的图像。
threshold - 所有高于此灰度级别的像素都将被反转。默认阈值设置为 128,这意味着强度值大于 128 的像素将被反转。
返回值
该函数返回一个新的图像对象,其中超过指定阈值的像素值已被反转。
示例
示例 1
在此示例中,ImageOps.solarize 函数用于反转输入图像中高于默认阈值 128 的像素值。
from PIL import Image, ImageOps # Open an image file input_image = Image.open("Images/butterfly.jpg") # Solarize the image with the default threshold solarized_image = ImageOps.solarize(input_image) # Display the original and solarized images input_image.show() solarized_image.show()
输出
输入图像
输出图像
示例 2
以下是用不同的图像和不同的阈值使用 PIL.ImageOps.solarize() 函数的另一个示例。
from PIL import Image, ImageOps # Open an image file input_image = Image.open("Images/Tajmahal_2.jpg") # Solarize the image with a specific threshold solarized_image = ImageOps.solarize(input_image, threshold=100) # Display the original and solarized images input_image.show() solarized_image.show()
输出
输入图像
输出图像
示例 3
在此示例中,代码使用不同的阈值对图像进行太阳化,并使用 Matplotlib 显示结果。
from PIL import Image, ImageOps import matplotlib.pyplot as plt # Open an image file input_image = Image.open("Images/flowers_1.jpg") # Define three different thresholds thresholds = [0, 50, 100] # Create subplots for original and solarized images num_thresholds = len(thresholds) + 1 fig, axes = plt.subplots(2, 2, figsize=(10, 8)) ax = axes.ravel() # Display the original image ax[0].imshow(input_image) ax[0].set_title('Original Image') ax[0].axis('off') # Solarize the image with different thresholds and display the results for idx, threshold in enumerate(thresholds, start=1): solarized_image = ImageOps.solarize(input_image, threshold=threshold) # Display the solarized images ax[idx].imshow(solarized_image) ax[idx].set_title(f'Solarized (Threshold = {threshold})') ax[idx].axis('off') plt.tight_layout() plt.show()
输出
python_pillow_function_reference.htm
广告