Defines the colour models plotting objects:
Plots given RGB colourspaces in CIE 1931 Chromaticity Diagram.
Parameters: |
|
---|---|
Returns: | Definition success. |
Return type: | bool |
Examples
>>> c = ['Rec. 709', 'ACEScg', 'S-Gamut']
>>> RGB_colourspaces_CIE_1931_chromaticity_diagram_plot(
... c)
True
Plots given RGB colourspaces in CIE 1960 UCS Chromaticity Diagram.
Parameters: |
|
---|---|
Returns: | Definition success. |
Return type: | bool |
Examples
>>> c = ['Rec. 709', 'ACEScg', 'S-Gamut']
>>> RGB_colourspaces_CIE_1960_UCS_chromaticity_diagram_plot(
... c)
True
Plots given RGB colourspaces in CIE 1976 UCS Chromaticity Diagram.
Parameters: |
|
---|---|
Returns: | Definition success. |
Return type: | bool |
Examples
>>> c = ['Rec. 709', 'ACEScg', 'S-Gamut']
>>> RGB_colourspaces_CIE_1976_UCS_chromaticity_diagram_plot(
... c)
True
Plots given RGB colourspace array in CIE 1931 Chromaticity Diagram.
Parameters: |
|
---|---|
Returns: | Definition success. |
Return type: | bool |
Examples
>>> RGB = np.random.random((10, 10, 3))
>>> c = 'Rec. 709'
>>> RGB_chromaticity_coordinates_CIE_1931_chromaticity_diagram_plot(
... RGB, c)
True
Plots given RGB colourspace array in CIE 1960 UCS Chromaticity Diagram.
Parameters: |
|
---|---|
Returns: | Definition success. |
Return type: | bool |
Examples
>>> RGB = np.random.random((10, 10, 3))
>>> c = 'Rec. 709'
>>> RGB_chromaticity_coordinates_CIE_1960_UCS_chromaticity_diagram_plot(
... RGB, c)
True
Plots given RGB colourspace array in CIE 1976 UCS Chromaticity Diagram.
Parameters: |
|
---|---|
Returns: | Definition success. |
Return type: | bool |
Examples
>>> RGB = np.random.random((10, 10, 3))
>>> c = 'Rec. 709'
>>> RGB_chromaticity_coordinates_CIE_1976_UCS_chromaticity_diagram_plot(
... RGB, c)
True
Plots given colourspace transfer function.
Parameters: |
|
---|---|
Returns: | Definition success. |
Return type: | bool |
Examples
>>> single_transfer_function_plot()
True
Plots given colourspaces transfer functions.
Parameters: |
|
---|---|
Returns: | Definition success. |
Return type: | bool |
Examples
>>> multi_transfer_function_plot(['Rec. 709', 'sRGB'])
True