TIOVX User Guide
|
Go to the source code of this file.
Functions | |
void | show_image_attributes (vx_image image) |
Show attributes of previously created image. More... | |
void | show_graph_attributes (vx_graph graph) |
Show attributes of previously created graph. More... | |
void | show_node_attributes (vx_node node) |
Show attributes of previously created node. More... | |
Utility APIs created as part of various tutorials
Definition in file utility.h.
void show_image_attributes | ( | vx_image | image | ) |
Show attributes of previously created image.
This function queries the vx_image image for its number of nodes, number of parameters, state, performance, reference name and reference count then prints this information.
image | [in] Previouly created image object |
Queries image for width, height, format, planes, size, space, range, range and memory type.
Definition at line 194 of file vx_tutorial_image_query.c.
void show_graph_attributes | ( | vx_graph | graph | ) |
Show attributes of previously created graph.
This function queries the vx_graph graph for its number of nodes, number of parameters, state, performance, reference name and reference count then prints this information.
graph | [in] Previouly created graph object |
Queries graph for number of nodes, number of parameters, state and performance
Definition at line 406 of file vx_tutorial_image_color_convert.c.
void show_node_attributes | ( | vx_node | node | ) |
Show attributes of previously created node.
This function queries the vx_node node for its status, number of parameters, performance, reference name and reference count then prints this information.
node | [in] Previouly created graph object |
Queries node for number of status, number of parameters and performance
Definition at line 477 of file vx_tutorial_image_color_convert.c.