colour_hdri.ImageStack¶
-
class
colour_hdri.ImageStack[source]¶ Defines a convenient stack storing a sequence of images for HDRI / radiance images generation.
-
ImageStack()¶
-
__init__()[source]
Methods
__init__()append(value)S.append(object) – append object to the end of the sequence count(…)extend(values)S.extend(iterable) – extend sequence by appending elements from the iterable from_files(image_files[, decoding_cctf])Returns a colour_hdri.ImageStackinstance with given image files.index(…)Raises ValueError if the value is not present. insert(index, value)Reimplements the MutableSequence.insert()method.pop(…)Raise IndexError if list is empty or index is out of range. remove(value)S.remove(value) – remove first occurrence of value. reverse()S.reverse() – reverse IN PLACE sort([key])Sorts the underlying data structure. -