GetBinaryDataInfo

Navigation:  NxLib API > C# Interface / CLI > NxLibItem >

GetBinaryDataInfo

Previous pageReturn to chapter overviewNext page

Reads the properties of a Binary node.

Signatures

Variants throwing exceptions on API errors:

void GetBinaryDataInfo(Out int width, Out int height, Out int channels, Out int bytesPerElement, Out bool isFloat, Out double timestamp)

Variants returning API errors as int parameter:

void GetBinaryDataInfo(Out int returnCode, Out int width, Out int height, Out int channels, Out int bytesPerElement, Out bool isFloat, Out double timestamp)

Parameters

returnCode

The error code returned when accessing the item.

width

Width of the image.

height

Height of the image.

channels

Number of channels, i.e. elements per pixels

bytesPerElement

Size of each element.

isFloat

Indicates whether elements are an IEEE float type of the corresponding size

timestamp

Timestamp when the binary blob was generated.

Return Value

none