MxstDataInput

Description

Defines the structure of data received by the stream.

Structure Definition

1
2
3
4
5
struct MxstDataInput { 
    MxstServiceInfo serviceInfo; 
    int dataSize = 0; 
    uint32_t* dataPtr = nullptr; 
}

Parameters

Parameter

Input/Output

Description

serviceInfo

Input

Inference service data.

dataSize

Input

Image data size. The size must be the same as the actual size. Otherwise, a core dump may occur.

dataPtr

Input

Pointer to the image data.