Documentation for Face Intellect 7.1. Documentation for other versions of Intellect is available too.
The Face-Intellect software allows obtaining real-time information on the number of passes of each person in the field of view of a given video camera.
Attention!
To use this function, you need to set the value of the registry key UseFaceDB = 2 (see the Registry keys reference guide).
The online analytics function is enabled as follows:
- Go to the settings panel of the Face Recognition Server object.
- Select the Online analytics check box (1).
- Click Apply (2).
If the Online analytics check box is selected, the Pass event (RECOGNITION_PASS) is displayed in the Event log when the face is detected. This event has the following parameters:
- imageBase64 - contains jpg image from the camera in base64 format
- info - the name of the camera, its number, and the number of passes. All cameras from which the face was previously recognized are indicated on the video image sepearated by a semicolon
- total_passes - the total number of passes for the currently recognized face
- age, gender - age and sex of the recognized person if the intellect.sec activation key allows the use of the sex and age recognition channel (see also Activation of the recognition module in the Face Intellect software)
- surname, name, patronymic, department, comment, sim - the parameters will be filled with corresponding values if the person is found in the online database
- firstId - the unique identifier of the captured person.
These parameters can be used in scripts in the JScript programming language (for more information on creating scripts, see the The Script object. Programming using the JScript language, the most current version of this document is available in the AxxonSoft documentation repository.
The following example shows the recording of a frame with a captured face image transmitted using the imageBase64 parameter to a file on the disk:
if (Event.SourceType == "FIRSERVER" && Event.Action == "RECOGNITION_PASS" && Event.SourceId=="1") { SaveToFile("c:\\Faces\\"+Event.GetParam("firstId")+".jpg",Event.GetParam("imageBase64"),true); }