Property VLAdaptiveThreshold.TVLAdaptiveThreshold.Inversed
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: TVLAdaptiveThreshold
Contents |
Syntax
Delphi:
property Inversed : Boolean read FInversed write FInversed default False;
C++ Builder:
__property bool Inversed = { read=FInversed, write=FInversed, default=False };
Summary
Inverse the output.
Description
Use this property to Inverse the output. If set to true the
result image will be White on Black background.
Example:
Inverted := False | Inverted := True |
Delphi example:
VLAdaptiveThreshold1.Inversed := True;
C++ Builder example:
VLAdaptiveThreshold1->Inversed = true;
Visual C++(MFC) example:
VLAdaptiveThreshold1.Inversed = true;
C# Example:
adaptiveThreshold1.Inversed = true;