colorsys
 

Conversion functions between RGB and other color systems.

This modules provides two functions for each color system ABC:

  rgb_to_abc(r, g, b) --> a, b, c
  abc_to_rgb(a, b, c) --> r, g, b

All inputs and outputs are triples of floats in the range [0.0...1.0].
Inputs outside this range may cause exceptions or invalid outputs.

Supported color systems:
RGB: Red, Green, Blue components
YIQ: used by composite video signals
HLS: Hue, Luminance, S???
HSV: Hue, Saturation, Value(?)


 Functions
                                                                                                                                                                                                                               
_v(m1, m2, hue)
no doc string
hls_to_rgb(h, l, s)
no doc string
hsv_to_rgb(h, s, v)
no doc string
rgb_to_hls(r, g, b)
# HLS: Hue, Luminance, S???
# H: position in the spectrum
# L: ???
# S: ???
rgb_to_hsv(r, g, b)
# HSV: Hue, Saturation, Value(?)
# H: position in the spectrum
# S: ???
# V: ???
rgb_to_yiq(r, g, b)
# YIQ: used by composite video signals (linear combinations of RGB)
# Y: perceived grey level (0.0 == black, 1.0 == white)
# I, Q: color components
yiq_to_rgb(y, i, q)
no doc string