JSON_PictureTaskInfoList

JSON message about the list of picture analysis task information

{
  "Tasks": [{
    "taskID": "",
/*required, string, task ID, no more than 64 bytes*/
    "engine": 1,
/*required, int, for distinguishing different engines*/
    "unfinishedPids": ["", ""],
/*required, string, picture ID of the picture whose analysis is not finished, no more than 64 bytes*/
    "status": 1,
/*required, int, status: 0(not performed), 1(performing), 2(exception), 3(waiting in queue), 4(task mismatched with model), 5(initializing)*/
    "pictureType":"",
/*optional, string,send the type of picture: binary(binary picture), url(URL picture)*/
    "RegionCoordinatesList":[{
/*optional, list of the coordinates of picture detection area, valid for one-class model only*/
      "positionX":0.653,
/*required, float, X coordinate*/
      "positionY":0.653
/*required, float, Y coordinate*/
    }],
    "alarmTargetOverlay":true
/*optional, boolean, whether to enable alarm target frame overlay*/
  }]
}