JSON_PersonArmingTrackCap

JSON message about person arming configuraiton capability

{
  "PersonArmingTrackCap":{
    "enabled":{
/*required, boolean, whether to enable person arming*/
      "@opt": [true, false]
    }, 
    "faceThreshold":{
/*optional, int, face grading threshold for detection, range: [0,100], default value: 70; when a face with its grading is larger than or equal to configured threshold, comparison with the pictures in the face picture library will be triggered*/
      "@min":0, 
      "@max":100, 
      "@def":70
    }, 
    "humanThreshold":{
/*optional, int, human body grading threshold for detection, range: [0,100], default value: 70; when a human body with its grading is larger than or equal to configured threshold, comparison with the pictures in the human body picture library will be triggered*/
      "@min":0, 
      "@max":100, 
      "@def":70
    }, 
    "faceDetectionTime":{
/*optional, int, maximum detection time of face, range: [0,300], unit: second, default value: 10s; when face grading does not reach the configured faceThreshold during the faceDetectionTime, the device stops grading the target face*/
      "@min":0, 
      "@max":300, 
      "@def":10
    }, 
    "humanDetectionTime":{
/*optional, int, maximum detection time of human body, range: [0,300], unit: second, default value: 10s; when human body grading does not reach the configured humanThreshold during the humanDetectionTime, the device stops grading the target human body*/
      "@min":0, 
      "@max":300, 
      "@def":10
    }, 
    "isSupportAdvanceConfiguration": 
/*optional, boolean, whether the device supports advanced parameters of person arming (related URI: /ISAPI/Intelligent/channels/<ID>/personArmingTrack/advanceConfiguration?format=json)*/ 
  }
}