Property VLFindTargets.TVLFindTargets.Mode
From Mitov Wiki Doc
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: TVLFindTargets
Contents |
Syntax
Delphi:
property Mode : TVLFindTargetMode read FMode write SetMode;
C++ Builder:
__property TVLFindTargetMode Mode = { read=FMode, write=SetMode };
Summary
Find target mode.
Description
Use this property to specify the find target mode. - 'Harris'
or 'Minimal eigenvalue of gradient matrices'
Delphi example:
VLFindTargets1.Mode := ftmMinEigenVal;
C++ Builder example:
VLFindTargets1->Mode = ftmMinEigenVal;
Visual C++(MFC) example:
VLFindTargets1.Mode = ftmMinEigenVal;
C# Example:
findTargets1.Mode = Mitov.VisionLab.FindTargetMode.MinEigenVal;