gpt4 book ai didi

python - 使用 Python PIL 更改图像色调

转载 作者:IT老高 更新时间:2023-10-28 22:15:41 33 4
gpt4 key购买 nike

使用 Python PIL,我正在尝试调整给定图像的色调。

我对图形的术语不太熟悉,所以我所说的“调整色调”是指进行名为 “Hue/saturation” 的 Photoshop 操作。 :这是为了统一改变图像的颜色,如下所示:

  • 原文:Original
  • 色调调整为 +180(红色):hue: -180
  • 色调调整为 -78(绿色):hue: -78

仅供引用,Photoshop 对此色调设置使用 -180 到 +180 的比例(其中 -180 等于 +180),这可能代表 HSL hue scale (以0-360度表示)。

我正在寻找的是 一个函数,如果给定一个 PIL 图像和一个 [0, 1] 内的浮点 hue(或 [0, 360] 内的 int,它不会't matter),返回图像,其色调偏移了 hue,如上例所示。

到目前为止,我所做的一切都是荒谬的,显然没有达到预期的效果。它只是将我的原始图像与填充颜色的图层混合了一半。

import Image

im = Image.open('tweeter.png')
layer = Image.new('RGB', im.size, 'red') # "hue" selection is done by choosing a color...
output = Image.blend(im, layer, 0.5)
output.save('output.png', 'PNG')

(请-不要笑-)结果:output.png

提前致谢!


解决方案:这里是更新的 unutbu 代码,因此它完全符合我的描述。

import Image
import numpy as np
import colorsys

rgb_to_hsv = np.vectorize(colorsys.rgb_to_hsv)
hsv_to_rgb = np.vectorize(colorsys.hsv_to_rgb)

def shift_hue(arr, hout):
r, g, b, a = np.rollaxis(arr, axis=-1)
h, s, v = rgb_to_hsv(r, g, b)
h = hout
r, g, b = hsv_to_rgb(h, s, v)
arr = np.dstack((r, g, b, a))
return arr

def colorize(image, hue):
"""
Colorize PIL image `original` with the given
`hue` (hue within 0-360); returns another PIL image.
"""
img = image.convert('RGBA')
arr = np.array(np.asarray(img).astype('float'))
new_img = Image.fromarray(shift_hue(arr, hue/360.).astype('uint8'), 'RGBA')

return new_img

最佳答案

colorsys module in the standard library 中有 Python 代码可以将 RGB 转换为 HSV(反之亦然)。 .我的第一次尝试使用了

rgb_to_hsv=np.vectorize(colorsys.rgb_to_hsv)
hsv_to_rgb=np.vectorize(colorsys.hsv_to_rgb)

向量化这些函数。不幸的是,使用 np.vectorize 会导致代码相当慢。

通过将 colorsys.rgb_to_hsvcolorsys.hsv_to_rgb 转换为原生 numpy 操作,我能够获得大约 5 倍的速度。

import Image
import numpy as np

def rgb_to_hsv(rgb):
# Translated from source of colorsys.rgb_to_hsv
# r,g,b should be a numpy arrays with values between 0 and 255
# rgb_to_hsv returns an array of floats between 0.0 and 1.0.
rgb = rgb.astype('float')
hsv = np.zeros_like(rgb)
# in case an RGBA array was passed, just copy the A channel
hsv[..., 3:] = rgb[..., 3:]
r, g, b = rgb[..., 0], rgb[..., 1], rgb[..., 2]
maxc = np.max(rgb[..., :3], axis=-1)
minc = np.min(rgb[..., :3], axis=-1)
hsv[..., 2] = maxc
mask = maxc != minc
hsv[mask, 1] = (maxc - minc)[mask] / maxc[mask]
rc = np.zeros_like(r)
gc = np.zeros_like(g)
bc = np.zeros_like(b)
rc[mask] = (maxc - r)[mask] / (maxc - minc)[mask]
gc[mask] = (maxc - g)[mask] / (maxc - minc)[mask]
bc[mask] = (maxc - b)[mask] / (maxc - minc)[mask]
hsv[..., 0] = np.select(
[r == maxc, g == maxc], [bc - gc, 2.0 + rc - bc], default=4.0 + gc - rc)
hsv[..., 0] = (hsv[..., 0] / 6.0) % 1.0
return hsv

def hsv_to_rgb(hsv):
# Translated from source of colorsys.hsv_to_rgb
# h,s should be a numpy arrays with values between 0.0 and 1.0
# v should be a numpy array with values between 0.0 and 255.0
# hsv_to_rgb returns an array of uints between 0 and 255.
rgb = np.empty_like(hsv)
rgb[..., 3:] = hsv[..., 3:]
h, s, v = hsv[..., 0], hsv[..., 1], hsv[..., 2]
i = (h * 6.0).astype('uint8')
f = (h * 6.0) - i
p = v * (1.0 - s)
q = v * (1.0 - s * f)
t = v * (1.0 - s * (1.0 - f))
i = i % 6
conditions = [s == 0.0, i == 1, i == 2, i == 3, i == 4, i == 5]
rgb[..., 0] = np.select(conditions, [v, q, p, p, t, v], default=v)
rgb[..., 1] = np.select(conditions, [v, v, v, q, p, p], default=t)
rgb[..., 2] = np.select(conditions, [v, p, t, v, v, q], default=p)
return rgb.astype('uint8')


def shift_hue(arr,hout):
hsv=rgb_to_hsv(arr)
hsv[...,0]=hout
rgb=hsv_to_rgb(hsv)
return rgb

img = Image.open('tweeter.png').convert('RGBA')
arr = np.array(img)

if __name__=='__main__':
green_hue = (180-78)/360.0
red_hue = (180-180)/360.0

new_img = Image.fromarray(shift_hue(arr,red_hue), 'RGBA')
new_img.save('tweeter_red.png')

new_img = Image.fromarray(shift_hue(arr,green_hue), 'RGBA')
new_img.save('tweeter_green.png')

产量

enter image description here

enter image description here

关于python - 使用 Python PIL 更改图像色调,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7274221/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com