Using Python PIL, I\'m trying to adjust the hue of a given image.
I\'m not very comfortable with the jargon of graphics, so what I mean by “adjusting hue” is doing t
With a recent copy of Pillow, one should probably use Image.convert():
def rgb2hsv(image: PIL.Image.Image): return image.convert('HSV')