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]
__getitem__()[source]
__setitem__()[source]
__delitem__()[source]
__len__()[source]
__getattr__()[source]
__setattr__()[source]
sort()[source]
insert()[source]
from_files()[source]
__init__()[source]

Initialize self. See help(type(self)) for accurate signature.

Methods

__init__() Initialize self.
append(value) S.append(value) – append value to the end of the sequence
count(value)
extend(values) S.extend(iterable) – extend sequence by appending elements from the iterable
from_files(image_files[, decoding_cctf]) Returns a colour_hdri.ImageStack instance with given image files.
index(value, [start, [stop]]) Raises ValueError if the value is not present.
insert(index, value) Reimplements the MutableSequence.insert() method.
pop([index]) 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.