Documentation for Detector Pack 2.7. Documentation for other versions of Detector Pack is available too.
In case the Fluid level detection object is selected on the IntLab-Carriages module settings panel, then the Fluid level detection module is operated in the Vehicle tracer interface window which is the part of the Auto-Intellect software. For details on operation of this object refer to the Auto-Intellect. Operator's Guide (the most relevant versions of this document is available in the AxxonSoft documentation repository). The fluid level is displayed in the parameters list in the Online monitor window when the LP is being recognized. You can also perform a search by the fluid level in the recognizers databases.
The Fluid level detection module also displays the fluid level as captions over the video image in the Surveillance Window of the the corresponding camera.
Note
To use this functionality, specify the captioner when configuring the Fluid level detection module (see Configuring the «Fluid level detection» module).
In addition, a script can be created that allows drawing a vertical line on the video image in the Surveillance Window, showing the level of the fill:
For details on the scripts refer to the Intellect software. Programming Guide (JScript).
The script text is given below. After copying, replace the cam (camera identifier) and x1, x2, y1, y2 parameters with the actual values.
if(Event.SourceType == "FLUID_DETECTOR" && Event.SourceId == "1" && Event.Action == "FLUID_ACTION") { var L = Event.GetParam("param0"); L=100-L*100; //the L parameter sets the line height DoReactStr("MONITOR","","SET_MARKRECT","cam<"+cam+">,color<255>,id<"+cam+">,x1<"+x1+">,x2<"+x2+">,y1<"+L+">,y2<"+y2+">"); // coordinates x1, x2, y1, y2 set line position in the Surveillance window }