Documentation for ATM Intellect 13.0. Documentation for other versions of ATM Intellect is available too.

Previous page Example of script to suspend recording on camera  Sample script to export filtered data from the Log Panel to .xls Next page

If the way of captioning ATM events used in ATM-Intellect Pro by default is unacceptable in some reason (the ATM events captioning checkbox is set in the Surveillance object settings - see Configuring video cameras list), then one can disable this setting and implement a new scenario using scripts. For example, in this case record can be initiated on some ATM event or events and stopped on another ATM event or events.

Note.

It is also possible for receipts printer. The following events of VIDEOSRV_C_DVC_ATM (Surveillance object) object can be used for that:

RECEIPT_START – Receipt start

RECEIPT_STOP – Receipt end

Example of script on built-in Intellect programming language for captioning on Card inserted event is given below:

OnEvent("VIDEOSRV_C_DVC_ATM","1","INSERT_CARD")
{
[
    if( !CheckState("CAM","1","DETACHED") )
    {
        DoReact("CAM","1","REC");
        DoReact("CAM","1","ADD_SUBTITLES","command<"+param2+" ID : "+param1+"\r>,page<BEGIN>,title_id<1>");
        DoReact("CAM","1","ADD_SUBTITLES","command<CARD No: "+param0+"\r>,title_id<1>");
        DoReact("CAM","1","ADD_SUBTITLES","command<EVENT: Card inserted\r>,title_id<1>");
        Wait(5);
        DoReact("CAM","1","ADD_SUBTITLES","command< \r>,page<END>,title_id<1>");
        DoReact("CAM","1","CLEAR_SUBTITLES","title_id<1>");
        DoReact("CAM","1","REC_STOP");
    }
]
}

As a result of the script, the following  info will be displayed on a video image for 5 seconds.