colour.plotting.RGB_colourspaces_chromaticity_diagram_plot_CIE1976UCS

colour.plotting.RGB_colourspaces_chromaticity_diagram_plot_CIE1976UCS(colourspaces=None, cmfs='CIE 1931 2 Degree Standard Observer', chromaticity_diagram_callable_CIE1976UCS=<function chromaticity_diagram_plot_CIE1976UCS>, **kwargs)[source]

Plots given RGB colourspaces in CIE 1976 UCS Chromaticity Diagram.

Parameters:
  • colourspaces (array_like, optional) – RGB colourspaces to plot.
  • cmfs (unicode, optional) – Standard observer colour matching functions used for diagram bounds.
  • chromaticity_diagram_callable_CIE1976UCS (callable, optional) – Callable responsible for drawing the CIE 1976 UCS Chromaticity Diagram.
Other Parameters:
 
Returns:

Current figure or None.

Return type:

Figure

Examples

>>> c = ['ITU-R Rec. 709', 'ACEScg', 'S-Gamut']
>>> RGB_colourspaces_chromaticity_diagram_plot_CIE1976UCS(c)
...