Property VLFindContours.TVLFindContours.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: TVLFindContours
Contents |
Syntax
Delphi:
property Mode : TVLContourMode read FMode write SetMode default cmExternal;
C++ Builder:
__property TVLContourMode Mode = { read=FMode, write=SetMode, default=cmExternal };
Summary
Desired contour mode.
Description
Use this property to specify the desired contour mode.
Delphi example:
VLFindContours1.Mode := cmExternal;
C++ Builder example:
VLFindContours1->Mode = cmExternal;
Visual C++(MFC) example:
VLFindContours1.Mode = cmExternal;
C# Example:
findContours1.Mode = Mitov.VisionLab.ContourMode.External;