Operator Reference
set_dict_object (Operator)
set_dict_object
— Add a key/object pair to the dictionary.
Signature
set_dict_object(Object : : DictHandle, Key : )
Description
set_dict_object
stores an object associated with a key in the
dictionary.
The dictionary is denoted by the DictHandle
parameter.
Object
is copied by the operation and can thus be
immediately reused.
Thereby the object data is copied in HALCON's object database,
meaning the new object contains a reference to Object
,
see copy_obj
.
Both an empty object or an object tuple are considered
as a valid value that can be associated with the key.
If any data (tuple or object) was already associated with given key
(Key
), the old data is destroyed by set_dict_object
and replaced by Object
.
The Key
has to be a string or an integer.
Strings are treated case sensitive.
The object data for the given key can be retrieved again from the dictionary
using get_dict_object
.
HDevelop In-line Operation
HDevelop provides an in-line operation for set_dict_object
,
which can be used in an expression in the following syntax:
-
Dynamic syntax:
DictHandle.['Key'] := Object
-
Static syntax:
DictHandle.Key := Object
Execution Information
- Multithreading type: reentrant (runs in parallel with non-exclusive operators).
- Multithreading scope: global (may be called from any thread).
- Processed without parallelization.
This operator modifies the state of the following input parameter:
During execution of this operator, access to the value of this parameter must be synchronized if it is used across multiple threads.
Parameters
Object
(input_object) object(-array) →
object
Object to be associated with the key.
DictHandle
(input_control, state is modified) dict →
(handle)
Dictionary handle.
Number of elements: DictHandle == 1
Key
(input_control) string →
(string / integer)
Key string.
Number of elements: Key == 1
Restriction:
length(Key) > 0
Example (HDevelop)
create_dict (Dict) read_image (Image, 'filename') set_dict_object (Image, Dict, 'my_image')
Result
If the operation succeeds, set_dict_object
returns 2 (
H_MSG_TRUE)
.
Otherwise an exception is raised. Possible error conditions include
invalid parameters (handle or key) or resource allocation error.
Possible Predecessors
Possible Successors
set_dict_object
,
set_dict_tuple
Alternatives
See also
create_dict
,
set_dict_tuple
,
get_dict_tuple
,
get_dict_object
,
remove_dict_key
,
get_dict_param
Module
Foundation