ImageDesc

class PyOpenColorIO.ImageDesc
ImageDesc() None
getBitDepth() PyOpenColorIO.PyOpenColorIO.BitDepth
getHeight() int
getWidth() int
getXStrideBytes() int
getYStrideBytes() int
isFloat() bool
isRGBAPacked() bool
PyOpenColorIO.AutoStride: int

PackedImageDesc

class PyOpenColorIO.PackedImageDesc
PackedImageDesc(*args, **kwargs)

Overloaded function.

  1. __init__(self: PyOpenColorIO.PyOpenColorIO.PackedImageDesc, data: typing_extensions.Buffer, width: typing.SupportsInt, height: typing.SupportsInt, numChannels: typing.SupportsInt) -> None

  2. __init__(self: PyOpenColorIO.PyOpenColorIO.PackedImageDesc, data: typing_extensions.Buffer, width: typing.SupportsInt, height: typing.SupportsInt, numChannels: typing.SupportsInt, bitDepth: PyOpenColorIO.PyOpenColorIO.BitDepth, chanStrideBytes: typing.SupportsInt, xStrideBytes: typing.SupportsInt, yStrideBytes: typing.SupportsInt) -> None

  3. __init__(self: PyOpenColorIO.PyOpenColorIO.PackedImageDesc, data: typing_extensions.Buffer, width: typing.SupportsInt, height: typing.SupportsInt, chanOrder: PyOpenColorIO.PyOpenColorIO.ChannelOrdering) -> None

  4. __init__(self: PyOpenColorIO.PyOpenColorIO.PackedImageDesc, data: typing_extensions.Buffer, width: typing.SupportsInt, height: typing.SupportsInt, chanOrder: PyOpenColorIO.PyOpenColorIO.ChannelOrdering, bitDepth: PyOpenColorIO.PyOpenColorIO.BitDepth, chanStrideBytes: typing.SupportsInt, xStrideBytes: typing.SupportsInt, yStrideBytes: typing.SupportsInt) -> None

getBitDepth() PyOpenColorIO.PyOpenColorIO.BitDepth
getChanStrideBytes() int
getChannelOrder() PyOpenColorIO.PyOpenColorIO.ChannelOrdering
getData() numpy.ndarray
getHeight() int
getNumChannels() int
getWidth() int
getXStrideBytes() int
getYStrideBytes() int
isFloat() bool
isRGBAPacked() bool

PlanarImageDesc

class PyOpenColorIO.PlanarImageDesc
PlanarImageDesc(*args, **kwargs)

Overloaded function.

  1. __init__(self: PyOpenColorIO.PyOpenColorIO.PlanarImageDesc, rData: typing_extensions.Buffer, gData: typing_extensions.Buffer, bData: typing_extensions.Buffer, width: typing.SupportsInt, height: typing.SupportsInt) -> None

  2. __init__(self: PyOpenColorIO.PyOpenColorIO.PlanarImageDesc, rData: typing_extensions.Buffer, gData: typing_extensions.Buffer, bData: typing_extensions.Buffer, aData: typing_extensions.Buffer, width: typing.SupportsInt, height: typing.SupportsInt) -> None

  3. __init__(self: PyOpenColorIO.PyOpenColorIO.PlanarImageDesc, rData: typing_extensions.Buffer, gData: typing_extensions.Buffer, bData: typing_extensions.Buffer, width: typing.SupportsInt, height: typing.SupportsInt, bitDepth: PyOpenColorIO.PyOpenColorIO.BitDepth, xStrideBytes: typing.SupportsInt, yStrideBytes: typing.SupportsInt) -> None

  4. __init__(self: PyOpenColorIO.PyOpenColorIO.PlanarImageDesc, rData: typing_extensions.Buffer, gData: typing_extensions.Buffer, bData: typing_extensions.Buffer, aData: typing_extensions.Buffer, width: typing.SupportsInt, height: typing.SupportsInt, bitDepth: PyOpenColorIO.PyOpenColorIO.BitDepth, xStrideBytes: typing.SupportsInt, yStrideBytes: typing.SupportsInt) -> None

getAData() numpy.ndarray
getBData() numpy.ndarray
getBitDepth() PyOpenColorIO.PyOpenColorIO.BitDepth
getGData() numpy.ndarray
getHeight() int
getRData() numpy.ndarray
getWidth() int
getXStrideBytes() int
getYStrideBytes() int
isFloat() bool
isRGBAPacked() bool