Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

ParameterRequiredParameter description
server_idYesIdentifier of the Face recognition server in Face PSIM
dataYesData you want to get
cameraIdsNoCamera identifiers (GUID) from the dbo.cameras table of the Fir databaseID). If they are not specified, the results for all cameras are displayed
dateTimeFromYesTime in UTC+0 format, starting from which the face search will be performed
dateTimeToYes

Time in UTC+0 format, up to which the face search will be performed

simNoLevel of similarity between the face from the camera photo and the reference image in the request in the range of 0-1. The recommended value is 0.8
imageYesImage in base64 format

...

Code Block
{
"server_id" : "1",                                                              
"data":
{
"cameraIds" : ["AAFFB7EA-2743-EE11-B47A-D85ED323673C1"],                         
"dateTimeFrom" : "2023-08-23T12:20:00",
"dateTimeTo" : "2023-08-25T16:20:00",
"sim" : 0.9,
"image" : "Alex's photo in base64"
}
}

...

ParameterParameter description
DataReceived data
rowsList of passages of the face captured by the cameras
idIdentifier of the user from the faces database
sim

Level of similarity between the face in the camera photo and the reference image in the request. The results must be equal to or greater than the specified value

cameraIdGUID ID of the camera that captured the face
timestampTime of face capture/passage in UTC+0 format
totalCountNumber of passage of the face
durationFace processing time in milliseconds
StatusStatus of the executed request: SUCCESSsuccessful, if errorsee List of possible errors of the Face recognition server

...