Go to documentation repository
Previous page Next page
Custom scripts are used for partial automation of processes while configuring Face PSIM. In the Programming Guide document there is the description of programming objects and methods which are in use for scripts creation in Axxon PSIM.
The verification mode compares the face captured in the frame with the user photo stored on the disk at <Axxon PSIM installation folder>\Bmp\<Person>. It also determines the face parameters: emotions, temperature, face concealment (mask), gender, facial hair.
To perform face verification, do the following:
Create the script:
if(Event.SourceType == "MACRO" && Event.Action == "RUN" && Event.SourceID == "1") { DoReactStr("FIRSERVER","1","VERIFY_START","cam_id<1>,p_id<15>,wait<10>"); }
Note
The face verification is completed.
Attention!
File with photo must have the .bmp extension. But the file format can be one from the list: JPG, BMP, or PNG.
A reference face can be added to the database from a file with photo using the ADD_PERSON_FROM_FILE reaction of the FIRSERVER object.
Note
When you add a reference face to the Face PSIM database, a new user is automatically created and assigned a photo from the specified file.
Parameters:
Example of the script usage:
if(Event.SourceType == "MACRO" && Event.Action == "RUN" && Event.SourceID == "1") { DoReactStr("FIRSERVER","1","ADD_PERSON_FROM_FILE","filename<c:\\iso_small.jpg>,name<Jane>,surname<Kramer>,department<Department 1>,comment<>"); }
If the face was successfully added to the reference faces database, the ADD_PERSON_FROM_FILE_OK event will be displayed in the Debug window. If there are any errors when adding the reference face, the ADD_PERSON_FROM_FILE_ERROR event will be displayed (see FIRSERVER events).