The OpenVX Specification  r28647
 All Data Structures Functions Variables Typedefs Enumerations Enumerator Groups Pages
Accumulate Weighted

Detailed Description

Accumulates a weighted value from an input image to an output image.

Weighted accumulation is computed by:

\[ accum(x,y) = (1 - \alpha)*accum(x,y) + \alpha*input(x,y) \]

Where \( 0 \le \alpha \le 1 \) Conceptually, the rounding for this is defined as:

\[ output(x,y)= uint8( (1 - \alpha) * float32( int32( output(x,y) ) ) + \alpha * float32( int32( input(x,y) ) ) ) \]

Functions

vx_node vxAccumulateWeightedImageNode (vx_graph graph, vx_image input, vx_scalar alpha, vx_image accum)
 [Graph] Creates a weighted accumulate node. More...
 
vx_status vxuAccumulateWeightedImage (vx_context context, vx_image input, vx_scalar scale, vx_image accum)
 [Immediate] Computes a weighted accumulation. More...
 

Function Documentation

vx_node vxAccumulateWeightedImageNode ( vx_graph  graph,
vx_image  input,
vx_scalar  alpha,
vx_image  accum 
)

[Graph] Creates a weighted accumulate node.

Parameters
[in]graphThe reference to the graph.
[in]inputThe input VX_DF_IMAGE_U8 image.
[in]alphaThe input VX_TYPE_FLOAT32 scalar value with a value in the range of \( 0.0 \le \alpha \le 1.0 \).
[in,out]accumThe VX_DF_IMAGE_U8 accumulation image.
Returns
vx_node.
Return values
0Node could not be created.
*Node handle.
vx_status vxuAccumulateWeightedImage ( vx_context  context,
vx_image  input,
vx_scalar  scale,
vx_image  accum 
)

[Immediate] Computes a weighted accumulation.

Parameters
[in]contextThe reference to the overall context.
[in]inputThe input VX_DF_IMAGE_U8 image.
[in]scaleA VX_TYPE_FLOAT32 type, the input value with the range \( 0.0 \le \alpha \le 1.0 \).
[in,out]accumThe VX_DF_IMAGE_U8 accumulation image.
Returns
A vx_status_e enumeration.
Return values
VX_SUCCESSSuccess
*An error occurred. See vx_status_e.