OpenColorIO

Open Source Color Management

OpenColorIO 1.0.6 documentation

Python: DisplayTransform

import PyOpenColorIO as OCIO

transform = OCIO.DisplayTransform()
class DisplayTransform

Used to create transforms for displays.

DisplayTransform.getInputColorSpaceName()

Returns the name of the input ColorSpace of DisplayTransform. :return: name of input ColorSpace :rtype: string

DisplayTransform.setInputColorSpaceName(name)

Sets the name of the input ColorSpace of DisplayTransform. :param name: name of input ColorSpace :type name: string

DisplayTransform.getLinearCC()

Returns the linear CC transform of DisplayTransform. :return: linear CC transform :rtype: object

DisplayTransform.setLinearCC(pyCC)

Sets the linear CC transform of DisplayTransform. :param pyCC: linear CC :type pyCC: object

DisplayTransform.getColorTimingCC()

Returns the color timing CC transform of DisplayTransform. :return: color timing CC transform :rtype: object

DisplayTransform.setColorTimingCC(pyCC)

Sets the color timing CC transform of DisplayTransform. :param pyCC: color timing CC :type pyCC: object

DisplayTransform.getChannelView()

Returns the channel view of DisplayTransform. :return: channel view :rtype: object

DisplayTransform.setChannelView(pyCC)

Sets the channel view transform of DisplayTransform. :param pyCC: channel view transform :type pyCC: object

DisplayTransform.getDisplay()

Returns the display of DisplayTransform. :return: display :rtype: string

DisplayTransform.setChannelView(str)

Sets the display of DisplayTransform. :param str: display :type str: string

DisplayTransform.getView()

Returns the view of DisplayTransform. :return: view :rtype: string

DisplayTransform.setView(str)

Sets the view of DisplayTransform. :param str: view :type str: string

DisplayTransform.getDisplayCC()

Returns the display CC transform of DisplayTransform. :return: display CC :rtype: object

DisplayTransform.setDisplayCC(pyCC)

Sets the display CC transform of DisplayTransform. :param pyCC: display CC :type pyCC: object

DisplayTransform.getLooksOverride()

Returns the looks in DisplayTransform that’s overriding Config‘s. :return: looks override :rtype: string

DisplayTransform.setLooksOverride(str)

Sets the looks override of DisplayTransform. :param str: looks override :type str: string

DisplayTransform.getLooksOverrideEnabled()

Returns whether the looks override of DisplayTransform is enabled. :return: looks override enabling :rtype: bool

DisplayTransform.setLooksOverrideEnabled(enabled)

Sets the looks override enabling of DisplayTransform. :param enabled: looks override enabling :type enabled: object