|
uint32_t | math_gcd (uint32_t a, uint32_t b) |
|
vx_status | vxGetLogEntry (vx_reference ref, char message[VX_MAX_LOG_MESSAGE_LEN]) |
| Returns the previous entry of the log. When called consecutively it will return the entire log. The log will be cleared by reading it.
|
|
void | vxRegisterHelperAsLogReader (vx_context context) |
| This enables the helper library logging feature to take over the error log callback and keep a database of previous log entries.
|
|
vx_node | vxCreateNodeByStructure (vx_graph graph, vx_enum kernelenum, vx_reference params[], vx_uint32 num) |
| A method to construct a node via arbitrary parameters and an enum.
|
|
void | vxClearLog (vx_reference ref) |
| A method to clear out the log for a particular reference, such as a graph.
|
|
vx_status | vxLinkParametersByReference (vx_parameter a, vx_parameter b) |
| This is used to connect one node parameter to another node parameter when the original handles to the data objects are already lost. The context determines if a buffer is necessary or can be optimized out.
|
|
vx_status | vxLinkParametersByIndex (vx_node node_a, vx_uint32 index_a, vx_node node_b, vx_uint32 index_b) |
| This is used to connect one parameter to another parameter by explicity indexing when the handles to the data objects are lost.
|
|
vx_status | vxSetAffineRotationMatrix (vx_matrix matrix, vx_float32 angle, vx_float32 scale, vx_float32 center_x, vx_float32 center_y) |
| This helper is used to easily set the affine matrix to a rotation and scale.
|
|
vx_status | vxAlterRectangle (vx_rectangle_t *rect, vx_int32 dsx, vx_int32 dsy, vx_int32 dex, vx_int32 dey) |
| [Helper] This function changes the points of a rectangle by some delta value per coordinate.
|
|
vx_status | vxAddParameterToGraphByIndex (vx_graph g, vx_node n, vx_uint32 index) |
| Adds a parameter to a graph by indicating the source node, and the index of the parameter on the node.
|
|
vx_bool | vxFindOverlapRectangle (vx_rectangle_t *rect_a, vx_rectangle_t *rect_b, vx_rectangle_t *rect_res) |
| Find the overlapping rectange between two rectangles.
|
|
void | vxReadRectangle (const void *base, const vx_imagepatch_addressing_t *addr, const vx_border_t *borders, vx_df_image type, vx_uint32 center_x, vx_uint32 center_y, vx_uint32 radius_x, vx_uint32 radius_y, void *destination, vx_uint32 border_x_start) |
| Read a rectangle-shaped section of an image into a 2D array.
|
|
vx_int64 | vxDivFloor (vx_int64 x, vx_int64 y) |
| Integer division with rounding towards minus infinity.
|
|
The OpenVX Helper Library Interface.