JSON_PictureTaskInfo

JSON message about the picture analysis task to be sent

{
  "taskID": "",
/*required, string, task ID, no more than 64 bytes*/
  "engine": 1,
/*required, int, for distinguishing different engines*/
  "URLs": [{
    "PID": "",
/*required, string, picture ID, no more than 64 bytes*/
    "URL": "" 
/*required, string, the URL of the picture, service platform needs to ensure the validity of the sent URL and the authentication should be available in the URL*/
  }],
  "pictureType":"",
/*optional, string, send the type of picture: binary(binary picture), url(URL picture)*/
  "RegionCoordinatesList":[{
/*optional, list of the coordinates in 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*/
}