在Python中手动将RGB转换为HSI

时间:2018-11-21 19:44:55

标签: python image rgb hsv converters

我需要交作业,需要一些帮助。

因此,我需要将RGB从图像转换为HSI并打印出三个图像(1.色相,2。饱和度和3.强度)。

我不能使用openCV之外的任何库来加载和打印图像;其他任何操作都必须手动完成。

我(我认为)计算正确,但是我似乎无法正确打印。我告诉我不能,因为输入是一个元组而输出不是。因此,我的输出(put.pixel)现在为空。

希望任何人都能提供帮助!

import math
from PIL import Image

RgbString = ' :RGB for pixel: '
HsiString = ' :HSI for pixel: '

img = Image.open('MemeFace.jpg')
HImage = Image.new("HSV", (img.width, 
img.height))
rgb_img = img.convert('RGB')
r, g, b = rgb_img.getpixel((1, 1))
HImage.convert('HSV')


def rgb2hsv(r, g, b):
    r = float(r)
    g = float(g)
    b = float(b)
    high = max(r, g, b)
    low = min(r, g, b)
    h, s, v = high, high, high

    d = high - low
    s = 0 if high == 0 else d/high

    if high == low:
        h = 0.0
    else:
        h = {
            r: (g - b) / d + (6 if g < b 
    else 0),
            g: (b - r) / d + 2,
            b: (r - g) / d + 4,
        }[high]
        h /= 6

    return h,s,v



for x in range (1, img.width):
    for y in range (1, img.height):
        r, g, b = rgb_img.getpixel((x,y))

        print(r, g, b, RgbString,  x, y)
        print(rgb2hsv(r, g, b), 
        HsiString, x, y)


        HImage.putpixel((x, y), ())


Image._show(HImage)

Image.fromdef

0 个答案:

没有答案