Property VLFindTargets.TVLFindTargets.Mode
From Mitov Wiki Doc
(Difference between revisions)
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
||
Line 10: | Line 10: | ||
=== Delphi: === | === Delphi: === | ||
<code> | <code> | ||
− | '''property''' Mode : [[Enum VLFindTargets.TVLFindTargetMode|TVLFindTargetMode]] '''read''' FMode '''write''' SetMode; | + | '''property''' Mode : [[Enum VLFindTargets.TVLFindTargetMode|TVLFindTargetMode]] '''read''' FMode '''write''' SetMode '''default''' [[Enum item VLFindTargets.TVLFindTargetMode.ftmMinEigenVal|ftmMinEigenVal]]; |
</code> | </code> | ||
=== C++ Builder: === | === C++ Builder: === | ||
<code> | <code> | ||
− | '''__property''' [[Enum VLFindTargets.TVLFindTargetMode|TVLFindTargetMode]] Mode = { '''read'''=FMode, '''write'''=SetMode }; | + | '''__property''' [[Enum VLFindTargets.TVLFindTargetMode|TVLFindTargetMode]] Mode = { '''read'''=FMode, '''write'''=SetMode, '''default'''=[[Enum item VLFindTargets.TVLFindTargetMode.ftmMinEigenVal|ftmMinEigenVal]] }; |
</code> | </code> | ||
Latest revision as of 17:19, 18 October 2012
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 default ftmMinEigenVal;
C++ Builder:
__property TVLFindTargetMode Mode = { read=FMode, write=SetMode, default=ftmMinEigenVal };
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;