![quercus BirdWatch Red Light Programming Manual Download Page 48](http://html1.mh-extra.com/html/quercus/birdwatch-red-light/birdwatch-red-light_programming-manual_772364048.webp)
QuercusVL Programming Manual
●
PreVideoTimeMs
C++: int get_PreVideoTimeMs ( )
C:
int VL_RedLightDetector_get_PreVideoTimeMs( int h )
Returns the tiime that the start of the video capture in the incidences will be advanced;
in miliseconds.
In C, the parameter “h” is a handler of detector (RedLightDetector).
●
PostVideoTimeMs
C++: int get_PostVideoTimeMs ( )
C:
int VL_RedLightDetector_get_PostVideoTimeMs( int h )
Returns the time that the stop of video capture in the incidences will be delayed; in
miliseconds.
In C, the parameter “h” is a handler of detector (RedLightDetector).
●
LastPictureDelayTimeMs
C++: int get_LastPictureDelayTimeMs ( )
C:
int VL_RedLightDetector_get_LastPictureDelayTimeMs( int h )
Returns the time that the last picture of incidence will be delayed; in miliseconds.
In C, the parameter “h” is a handler of detector (RedLightDetector).
3.15. Class StoppedCarDetector
Logic representation of a detector of
stopped car
type.
This class derives from Detector class, so all its methods and properties are inherited.
It has implemented the assignment operator to use a generic detector as a
stopped car
detector.
Example in C++
if(detector.get_Type() == DT_STOPPED_CAR)
{
StoppedCarDetector myStpoppedCarDetector;
myStpoppedCarDetector = detector;
// assignment operator
ProcessStoppedCarDetector (myStpoppedCarDetector);
}
Quercus Technologies
48