Documentation for Intellect 4.10.4. Documentation for other versions of Intellect is available too.

Previous page DISPLAY  CAM_VMDA_DETECTOR Next page


The GATE object corresponds to the Videogate system object.

The GATE object sends events presented in the table.  Procedure is started when the corresponding event appears.

Format of events procedure for the Videogate object:

OnEvent("GATE ","_id_","_event_")

Events

Description

Comment

GATE_LOW_FPS

Input speed on the gate is reduced

 

ACTIVE

Gate is active

Event is generated when list of worked cameras corresponds to the list of Videogate configuration.

INACTIVE

Gate is inactive

Event is generated when there are no requests for video flows through the Videogate.

ACTIVE_PART

Partial work of gate

Event is generated if number of worked cameras is less than in the gate list.

Example.  Send corresponding messages to all system cores while reducing the input speed.

OnEvent("GATE ","1"," GATE_LOW_FPS ")
{
    NotifyEventGlobal ("GATE ","1"," GATE_LOW_FPS ");
}
  • No labels