colour_hdri.ImageStack¶
-
class
colour_hdri.ImageStack[source]¶ Bases:
collections.abc.MutableSequenceDefines a convenient stack storing a sequence of images for HDRI / radiance images generation.
-
ImageStack()¶
-
static
from_files(image_files, cctf_decoding=None)[source] Returns a
colour_hdri.ImageStackinstance with given image files.- Parameters
image_files (array_like) – Image files.
cctf_decoding (object, optional) – Decoding colour component transfer function (Decoding CCTF) or electro-optical transfer function (EOTF / EOCF).
- Returns
- Return type
-
insert(index, value)[source] Reimplements the
MutableSequence.insert()method.
-
sort(key=None)[source] Sorts the underlying data structure.
- Parameters
key (callable) – Function of one argument that is used to extract a comparison key from each data structure.
-