RGB values of visible spectrum

后端 未结 11 1610
难免孤独
难免孤独 2020-11-22 10:37

I need an algorithm or function to map each wavelength of visible range of spectrum to its equivalent RGB values. Is there any structural relation between the RGB System an

11条回答
  •  名媛妹妹
    2020-11-22 11:26

    Partial "Approximate RGB values for Visible Wavelengths"

    Credit: Dan Bruton - Color Science

    Original FORTRAN code @ (http://www.physics.sfasu.edu/astro/color/spectra.html)

    Will return smooth(continuous) spectrum, heavy on the red side.

    w - wavelength, R, G and B - color components

    Ignoring gamma and intensity simple leaves:

    if w >= 380 and w < 440:
        R = -(w - 440.) / (440. - 380.)
        G = 0.0
        B = 1.0
    elif w >= 440 and w < 490:
        R = 0.0
        G = (w - 440.) / (490. - 440.)
        B = 1.0
    elif w >= 490 and w < 510:
        R = 0.0
        G = 1.0
        B = -(w - 510.) / (510. - 490.)
    elif w >= 510 and w < 580:
        R = (w - 510.) / (580. - 510.)
        G = 1.0
        B = 0.0
    elif w >= 580 and w < 645:
        R = 1.0
        G = -(w - 645.) / (645. - 580.)
        B = 0.0
    elif w >= 645 and w <= 780:
        R = 1.0
        G = 0.0
        B = 0.0
    else:
        R = 0.0
        G = 0.0
        B = 0.0
    

提交回复
热议问题