Go to documentation repository
The following events can occur in the ISD paid access system integration module:
Event name | Event description | Event example |
---|---|---|
integration caps | Displays the functionality of the integration point | [192.168.10.9:8845] integration caps: admin_caps(), event_caps(), capture_caps(), ident_caps(), camera(1, "Camera 1") |
cameras | Displays the video cameras list of the integration point | [192.168.10.9:8845] cameras: camera(1, "Camera 1") |
integration status | Displays the status of the integration point | [192.168.10.9:8845] integration status: No errors (0) |
There are 2 types of events that can occur during the face capture and face recognition: capture and ident. The capture event indicates that the face is captured. The ident event indicates that the captured face was verified with the database. There should always be a pair of these events for each face. If the face is in the database, then the ident event has the ident_match tag, which contains the information about the recognized face. If the face is not in the database, then there is no ident_match tag. The decision to open the turnstile should be made on the basis of the ident event. This decision should not be made on the basis of the capture event | ||
capture | The face is captured. This event occurs in any case when the face is captured | [192.168.10.9:8845] capture: capture_id=(105EDA86-7B48-E811-8AE7-54E6FC817BD7), camera_id=(1), capture_time=(2018-04-25 14:26:46.731), confidence=(0), face_rect=(0.4,0.1,0.3,0.4) |
ident | The captured face did not match the face in the database. In this case, there is always a pair of the events: capture and ident | [192.168.10.9:8845] ident: ident_id=(F8F8C393-7B48-E811-8AE7-54E6FC817BD7), ident_time= (2018-04-25 14:27:12.290), no matches, capture: capture_id=(F8F8C393-7B48-E811-8AE7-54E6FC817BD7), camera_id=(1), capture_time=(2018-04-25 14:27:11.983), confidence=(0.647499979), face_rect=(0,0,1,1) where: ident_id—the identified face id. ident_time—the face capture time. no matches—indicates that the face is not recognized. capture_id—the captured face id. camera_id—the id of the camera that captured the face. capture_time—the timestamp of the captured face verification with the database |
ident | The captured face matched the face in the database. In this case, there is always a pair of the events: capture and ident | [192.168.10.9:8845] ident: ident_id=(DC998399-7C48-E811-8AE7-54E6FC817BD7), ident_time= (2018-04-25 14:34:36.245), person_id1=(), similarity1=(65.8300018), lists1=(5), capture: capture_id= (DC998399-7C48-E811-8AE7-54E6FC817BD7), camera_id=(1), capture_time=(2018-04-25 14:34:33.352), confidence=(0), face_rect=(0,0,1,1) where: ident_id—the identified face id. ident_time—the face capture time. person_id1—the id of the face in the database. This id will be empty because the faces from the Face PSIM database are not related to the clients from the ISD database. similarity1—the similarity percent of the captured face and the face from the database. lists1—the id of the department to which the face is added. capture_id—the captured face id. camera_id—the id of the camera that captured the face. capture_time—the timestamp of the captured face verification with the database |