Converts a 2D texture with statistic values to an array of half-float precision.

Namespace: VideoDVR
Assembly: VideoDVR (in VideoDVR.exe) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public static Half[] ToArray(
	Texture statistics
)
Visual Basic
Public Shared Function ToArray ( _
	statistics As Texture _
) As Half()
Visual C++
public:
static array<Half>^ ToArray(
	Texture^ statistics
)

Parameters

statistics
Type: Texture
A 2D texture containing statistics (max. 4 values). Only Textures generated by this class are supported.

Return Value

The converted values as array of half-precision floating point number.

See Also