CoreFlow 1.0.0
A modern orchestration and execution runtime
Loading...
Searching...
No Matches
Kernel: Bitwise Not

Functions

VX_API_ENTRY vx_node VX_API_CALL vxNotNode (vx_graph graph, vx_image input, vx_image output)
 [Graph] Creates a bitwise NOT node.
 
VX_API_ENTRY vx_status VX_API_CALL vxuNot (vx_context context, vx_image input, vx_image output)
 [Immediate] Computes the bitwise not of an image.
 

Detailed Description

Function Documentation

◆ vxNotNode()

VX_API_ENTRY vx_node VX_API_CALL vxNotNode ( vx_graph graph,
vx_image input,
vx_image output )

#include <vx_nodes.h>

[Graph] Creates a bitwise NOT node.

Parameters
[in]graphThe reference to the graph.
[in]inputA VX_DF_IMAGE_U8 or VX_DF_IMAGE_U1 input image.
[out]outputThe VX_DF_IMAGE_U8 or VX_DF_IMAGE_U1 output image, which must have the same dimensions and type as the input image.
Returns
vx_node.
Return values
vx_nodeA node reference. Any possible errors preventing a successful creation should be checked using vxGetStatus

◆ vxuNot()

VX_API_ENTRY vx_status VX_API_CALL vxuNot ( vx_context context,
vx_image input,
vx_image output )

#include <vxu.h>

[Immediate] Computes the bitwise not of an image.

Parameters
[in]contextThe reference to the overall context.
[in]inputA VX_DF_IMAGE_U8 or VX_DF_IMAGE_U1 input image.
[out]outputThe VX_DF_IMAGE_U8 or VX_DF_IMAGE_U1 output image, which must have the same dimensions and type as the input image.
Returns
A vx_status_e enumeration.
Return values
VX_SUCCESSSuccess
*An error occurred. See vx_status_e.