![]() |
The OpenVX Specification
a73e458
|
Performs a bitwise EXCLUSIVE OR (XOR) operation between two VX_DF_IMAGE_U8 images [R00025].
Bitwise XOR is computed by the following, for each bit in each pixel in the input images [R00026]:
\[ out(x,y) = in_1(x,y) \oplus in_2(x,y) \]
Or expressed as C code:
Functions | |
| vx_node VX_API_CALL | vxXorNode (vx_graph graph, vx_image in1, vx_image in2, vx_image out) |
| [Graph] Creates a bitwise EXCLUSIVE OR node. More... | |
[Graph] Creates a bitwise EXCLUSIVE OR node.
| [in] | graph | The reference to the graph [R00303]. |
| [in] | in1 | A VX_DF_IMAGE_U8 input image [R00304]. |
| [in] | in2 | A VX_DF_IMAGE_U8 input image [R00305]. |
| [out] | out | The VX_DF_IMAGE_U8 output image [R00306]. |
vx_node [R00307]. | vx_node | A node reference. Any possible errors preventing a successful creation should be checked using vxGetStatus |