colour_hdri.GraphPostMergeHDRI#

class colour_hdri.GraphPostMergeHDRI(*args: Any, **kwargs: Any)[source]#

Normalise the exposure of the input EXR files at once and write corresponding preview image files.

Methods

Return a new instance of the colour.utilities.Node class.

Parameters:
  • args (Any) – Arguments.

  • kwargs (Any) – Keywords arguments.

__init__(*args: Any, **kwargs: Any) None[source]#
Parameters:
  • args (Any)

  • kwargs (Any)

Return type:

None

Methods

__init__(*args, **kwargs)

add_input_port(name[, value, description, ...])

Add an input port with given name and value to the node.

add_node(node)

Add given node to the node-graph.

add_output_port(name[, value, description, ...])

Add an output port with given name and value to the node.

connect(source_port, target_node, target_port)

Connect the given source port to given node target port.

disconnect(source_port, target_node, target_port)

Disconnect the given source port from given node target port.

get_input(name)

Return the value of the input port with given name.

get_output(name)

Return the value of the output port with given name.

is_inner()

Return whether the node is an inner node.

is_leaf()

Return whether the node is a leaf node.

is_root()

Return whether the node is a root node.

log(message[, verbosity])

Log given message using given verbosity level.

process(**kwargs)

Process the node-graph.

remove_input_port(name)

Remove the input port with given name from the node.

remove_node(node)

Remove given node from the node-graph.

remove_output_port(name)

Remove the output port with given name from the node.

render([tab_level])

Render the current node and its children as a string.

set_input(name, value)

Set the value of the input port with given name.

set_output(name, value)

Set the value of the output port with given name.

to_graphviz()

Return a visualisation node-graph for Graphviz.

walk_hierarchy([ascendants])

Return a generator used to walk into colour.utilities.Node tree.

walk_ports()

Return a generator used to walk into the node-graph.

Attributes

MAPPING_LOGGING_LEVEL_TO_CALLABLE

children

Getter and setter property for the node children.

data

Getter property for the node data.

description

Getter and setter property for the node description.

dirty

Getter and setter property for the node dirty state.

edges

Return the edges of the node.

id

Getter property for the node id.

input_ports

Getter property for the input ports.

leaves

Getter property for the node leaves.

name

Getter and setter property for the name.

nodes

Getter property for the node-graph nodes.

output_ports

Getter property for the output ports.

parent

Getter and setter property for the node parent.

root

Getter property for the node tree.

siblings

Getter property for the node siblings.