Property VLMotionDetect.TVLMotionDetect.CountMode
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Class: TVLMotionDetect
Contents |
Syntax
Delphi:
property CountMode : TVLMotionCountMode read FCountMode write SetCountMode default cmProportional;
C++ Builder:
__property TVLMotionCountMode CountMode = { read=FCountMode, write=SetCountMode, default=cmProportional };
Summary
Count mode for the motion detection.
Description
Use this property to specify the count mode for the motion
detection. If set to absolute the motion will be detected
when an absolute value is reached in a single cell of the
motion grid. Otherwise the value will be compared with the
average values of the grid over time, and only if the current
value is bigger than the average a motion will be detected.
Delphi example:
VLMotionDetect1.CountMode := cmProportional;
C++ Builder example:
VLMotionDetect1->CountMode = cmProportional;
Visual C++(MFC) example:
VLMotionDetect1.CountMode = cmProportional;
C# Example:
motionDetect1.CountMode = Mitov.VisionLab.MotionCountMode.Proportional;