62 #ifndef _TIOVX_MODULES 63 #define _TIOVX_MODULES 203 #endif //_TIOVX_MODULES NODE_TYPES
Enum that lists all available modules.
Definition: tiovx_modules_cbs.h:97
vx_status tiovx_modules_release_node(NodeObj *node)
Function to release a node, to be used only in modules.
Definition: tiovx_modules.c:884
vx_status tiovx_modules_release_buf(Buf *buf)
Release a previously acquired buffer back to its pool.
Definition: tiovx_modules.c:164
Buf * tiovx_modules_acquire_buf(BufPool *buf_pool)
Acquire a free buffer from a buffer pool.
Definition: tiovx_modules.c:145
vx_status tiovx_modules_wait_graph(GraphObj *graph)
Function to wait for graph exec, if mode set to manual.
Definition: tiovx_modules.c:860
vx_status tiovx_modules_clean_graph(GraphObj *graph)
Function to clean the graph at the end of the application.
Definition: tiovx_modules.c:911
void tiovx_modules_print_performance(GraphObj *graph)
Function to print performance of each node in graph.
Definition: tiovx_modules.c:761
vx_status tiovx_modules_export_graph(GraphObj *graph, char *path, char *prefix)
Function to export graph as a dot file.
Definition: tiovx_modules.c:738
vx_status tiovx_modules_enqueue_buf(Buf *buf)
Function to enqueue a buffer to OpenVX graph.
Definition: tiovx_modules.c:793
vx_status tiovx_modules_schedule_graph(GraphObj *graph)
Function to schedule graph, if mode set to manual.
Definition: tiovx_modules.c:850
vx_status tiovx_modules_initialize_graph(GraphObj *graph)
Function to initialize a graph object.
Definition: tiovx_modules.c:74
Buf * tiovx_modules_dequeue_buf(BufPool *buf_pool)
dequeue a buffer from OpenVX graph.
Definition: tiovx_modules.c:823
NodeObj * tiovx_modules_get_node_by_name(GraphObj *graph, char *name)
Function to get access to node object by name.
Definition: tiovx_modules.c:747
NodeObj * tiovx_modules_add_node(GraphObj *graph, NODE_TYPES node_type, void *cfg)
Function to add a new node to graph.
Definition: tiovx_modules.c:96
vx_status tiovx_modules_verify_graph(GraphObj *graph)
Function to be called after adding and connecting all the nodes. This function will created actual Op...
Definition: tiovx_modules.c:678