![]() |
The OpenVX Specification
a73e458
|
Performs a bitwise AND operation between two VX_DF_IMAGE_U8 images [R00023].
Bitwise AND is computed by the following, for each bit in each pixel in the input images [R00024]:
\[ out(x,y) = in_1(x,y) \wedge in_2(x,y) \]
Or expressed as C code:
Functions | |
| vx_node VX_API_CALL | vxAndNode (vx_graph graph, vx_image in1, vx_image in2, vx_image out) |
| [Graph] Creates a bitwise AND node. More... | |
[Graph] Creates a bitwise AND node.
| [in] | graph | The reference to the graph [R00293]. |
| [in] | in1 | A VX_DF_IMAGE_U8 input image [R00294]. |
| [in] | in2 | A VX_DF_IMAGE_U8 input image [R00295]. |
| [out] | out | The VX_DF_IMAGE_U8 output image [R00296]. |
vx_node [R00297]. | vx_node | A node reference. Any possible errors preventing a successful creation should be checked using vxGetStatus |