Documentation for Auto PSIM 1.0.1.

Previous page General information about scripts  Appendix 3. Database replication via MS SQL Server Next page

The following scripts are widely used in the Auto PSIM software package.

Purpose of script

Script

1

Start of Auto-Uragan program module

if(Event.SourceType == "MACRO" && Event.SourceId == "1" && Event.Action == "RUN"){

DoReactStr("ULPR","1","START","");

}

2

Shutdown of Auto-Uragan program module

if(Event.SourceType == "MACRO" && Event.SourceId == "1" && Event.Action == "RUN"){

DoReactStr("ULPR","1","STOP","");

}

3

Activation of window of operator request by results of recognized vehicle license plate found in the external database

if(Event.SourceType == "LPRDB" && Event.SourceId == "1" && Event.Action == "SEARCH_RESULT")

{

DoReactStr("ULPR","1","STOP","");

var msg=Event.Clone();

var m=msg.GetParam("comment");

var d=msg.GetParam("date");

var number=msg.GetParam("column.0.value");

DoReactStr("DIALOG","black_list","RUN","param0<"+number+">,column.4.value<"+m+">,date<"+d+">");

}

4

Video convertation to AVI format with record of vehicle, license plate of which is recognized

function printDate(temp)

{

    var dateStr = padStr(temp.getDate())+"-"+

                  padStr(temp.getMonth()) +"-"+

                  padStr(temp.getFullYear()) +" "+

                  padStr(temp.getHours()) +":"+

                  padStr(temp.getMinutes()) +":"+

                  padStr(temp.getSeconds());

return dateStr;

}

function padStr(i)

{

if(i > 1000)

{

var temp = ""+i;

temp = temp.substr(2,2);

return  temp;

}

    return (i < 10) ? "0" + i : "" + i;

}

if(Event.Action == "NUMBER_DETECTED" && Event.SourceType=="ULPR" && Event.SourceId=="1")

{

var plate = Event.GetParam("plate");

debugger;

if(plate == "o270ca99")

//if(Event.Action == "RUN" && Event.SourceType=="MACRO" && Event.SourceId=="1")

{

DoReactStr("CAM","1","REC_STOP","");

DoReactStr("CAM","1","REC","delay<500>");

var time = Event.GetParam("time");

var date = Event.GetParam("date");

var tArr = time.split(":");

var dArr = date.split("-");

var shift = new Date("20"+dArr[2],dArr[1],dArr[0],tArr[0],tArr[1], tArr[2]);

shift.setSeconds(shift.getSeconds()+30);

var time1 = printDate(shift);

var filename = date+"_"+time+".avi";

filename = filename.replace(/:/g,"_");

filename = filename.replace(/-/g,"_");

var oShell = new ActiveXObject("Shell.Application");

var commandtoRun = "C:\\Program Files (x86)\\Axxon PSIM\\Tools\\Converter.exe";

var arguments = "\"c:\\backup\\"+filename+"\",\"1\",\" "+date+" "+time+"\",\" "+time1+"\"";

DebugLogString(arguments);

oShell.ShellExecute(commandtoRun,arguments,"","open","1");

}

}

5

Raising of turnpike

if(Event.SourceType == "LPRDB" && Event.SourceId == "1" && Event.Action == "SEARCH_RESULT")

{

DoReactStr("GRELE","1","ON","");

Sleep(5000);

DoReactStr("GRELE","1","OFF","");

}

6

Creation of a passing vehicle event. The information is displayed in the Online Monitor and recorded to the database:

  1. Request without parameters — an empty result containing an undefined LP number is returned.
  2. Request with the plate parameter — the result containing the LP number is returned. If the LP number coordinates are not specified (plate_left, plate_top, plate_right, plate_bottom), then whole frame will be displayed.
  3. Request with any database parameters that are displayed in the Online Monitor. For example, LP number coordinates (plate_left, plate_top, plate_right, plate_bottom), confidence, direction, hazard_class
  1. DoReactStr("ULPR","1","CREATE_EVENT","");                                                    
  2. DoReactStr("ULPR","1","CREATE_EVENT","plate<A777AA777>");
  3. DoReactStr("ULPR","1","CREATE_EVENT","plate<A777AA777>,plate_left<200>,plate_top<200>,plate_right<300>,plate_bottom<300>,confidence<15>,direction<2>,hazard_class<Very dangerous>");
  • No labels