Documentation for Intellect 4.11.0-4.11.3. Documentation for other versions of Intellect is available too.

Previous page Next page


You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Formats

Format of events procedure for the VMDA Detection:

OnEvent("CAM_VMDA_DETECTOR ","_id_","_event_")

Operator format to describe actions with the VMDA Detection:

DoReact("CAM_VMDA_DETECTOR","_id_","_command_");

Format of events procedure for the Face Detection object:

OnEvent("CAM_FACECAPTURE","_id_","_event_")

The operator format to describe actions with the Face Detection:

DoReact("CAM_FACECAPTURE","_id_","_command_" [,"_parameters_"]);

Format of events procedure for the Embedded detection object:

OnEvent("CAM_IP_DETECTOR","_id_","_event_")

Example

Example of using events and reactions of the VMDA Detection object:

Arm the VMDA Detection 2 on Macro 1:

OnEvent ("MACRO","1","RUN")
{
    DoReact("CAM_VMDA_DETECTOR","2","ARM");
}


  • No labels