![]() |
The OpenVX Specification
a73e458
|
Maps output pixels in an image from input pixels in an image.
Remap takes a remap table object vx_remap to map a set of output pixels back to source input pixels [R00107]. A remap is typically defined as:
\[ output(x,y)=input(mapx(x,y),mapy(x,y)); \]
for every (x,y) in the destination image
However, the mapping functions are contained in the vx_remap object.
Functions | |
| vx_node VX_API_CALL | vxRemapNode (vx_graph graph, vx_image input, vx_remap table, vx_enum policy, vx_image output) |
| [Graph] Creates a Remap Node. More... | |
| vx_node VX_API_CALL vxRemapNode | ( | vx_graph | graph, |
| vx_image | input, | ||
| vx_remap | table, | ||
| vx_enum | policy, | ||
| vx_image | output | ||
| ) |
[Graph] Creates a Remap Node.
| [in] | graph | The reference to the graph that will contain the node [R00389]. |
| [in] | input | The input VX_DF_IMAGE_U8 image [R00390]. |
| [in] | table | The remap table object [R00391]. |
| [in] | policy | An interpolation type from Interpolation Constants. VX_INTERPOLATION_AREA is not supported [R00392]. |
| [out] | output | The output VX_DF_IMAGE_U8 image [R00393]. |
VX_NODE_BORDER value VX_BORDER_UNDEFINED and VX_BORDER_CONSTANT are supported. vx_node [R00394]. | vx_node | A node reference. Any possible errors preventing a successful creation should be checked using vxGetStatus |