VisionWorks Toolkit Reference

December 18, 2015 | 1.2 Release

 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Warp Extensions

Adds various extensions to the WarpAffine and WarpPerspective vision functions.

This section describes different extensions to the standard Warp Affine and Warp Perspective vision functions.

Supported Input Formats

In addition to standard formats for the WarpAffine and WarpPerspective primitives, VisionWorks supports the following input formats:

Example Code

vx_image src = vxCreateImage(context, 640, 480, VX_DF_IMAGE_RGBX);
vx_image dst = vxCreateImage(context, 640, 480, VX_DF_IMAGE_RGBX);
vx_matrix matrix = vxCreateMatrix(context, VX_TYPE_FLOAT32, 3, 3);
vxReleaseMatrix(&matrix);
vxReleaseContext(&context);