MxDataInputExt

Description

Defines the output data of the inference service.

Structure Definition

1
2
3
4
5
6
7
8
class MxDataInputExt :
    def __init__(self):
        self.data = None
        self.fragmentId = None
        self.customParam = None
        self.roiBoxs = list()  # list
        self.mxpiFrameInfo = None
        self.mxpiVisionInfo = None

Parameters

Parameter

Type

Description

data

bytes

Image data

fragmentId

int

(Reserved) Fragment ID

customParam

bytes

(Reserved) Custom parameter

roiBoxs

RoiBoxVector

Coordinate array of the bounding box

mxpiFrameInfo

bytes

Serializes the frame information of an image into a character string.

mxpiVisionInfo

bytes

Serializes image information into a character string.