colour.models.rgb.dataset.best_rgb Module

Best RGB Colourspace

Defines the Best RGB colourspace:

References

[1]HutchColor. (n.d.). BestRGB (4 K). Retrieved from http://www.hutchcolor.com/profiles/BestRGB.zip
colour.models.rgb.dataset.best_rgb.BEST_RGB_PRIMARIES = array([[ 0.73519164, 0.26480836], [ 0.21533613, 0.77415966], [ 0.13012295, 0.03483607]])

Best RGB colourspace primaries.

BEST_RGB_PRIMARIES : ndarray, (3, 2)

colour.models.rgb.dataset.best_rgb.BEST_RGB_ILLUMINANT = u'D50'

Best RGB colourspace whitepoint name as illuminant.

BEST_RGB_ILLUMINANT : unicode

colour.models.rgb.dataset.best_rgb.BEST_RGB_WHITEPOINT = (0.3457, 0.3585)

Best RGB colourspace whitepoint.

BEST_RGB_WHITEPOINT : tuple

colour.models.rgb.dataset.best_rgb.BEST_RGB_TO_XYZ_MATRIX = array([[ 0.6318944 , 0.20538793, 0.12701335], [ 0.22760177, 0.73839465, 0.03400357], [ 0. , 0.01001892, 0.81508568]])

Best RGB colourspace to CIE XYZ tristimulus values matrix.

BEST_RGB_TO_XYZ_MATRIX : array_like, (3, 3)

colour.models.rgb.dataset.best_rgb.XYZ_TO_BEST_RGB_MATRIX = array([[ 1.75737181, -0.48538023, -0.25359913], [-0.54199672, 1.50475404, 0.02168337], [ 0.00666215, -0.01849623, 1.22659836]])

CIE XYZ tristimulus values to Best RGB colourspace matrix.

XYZ_TO_BEST_RGB_MATRIX : array_like, (3, 3)

colour.models.rgb.dataset.best_rgb.BEST_RGB_COLOURSPACE = <colour.models.rgb.rgb_colourspace.RGB_Colourspace object>

Best RGB colourspace.

BEST_RGB_COLOURSPACE : RGB_Colourspace