Leadtools.ImageProcessing.Core Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
EdgeLevels Property
See Also 
Leadtools.ImageProcessing.Core Namespace > MultiscaleEnhancementCommand Class : EdgeLevels Property



Gets or sets the number of levels that will be used for edge enhancement.

Syntax

Visual Basic (Declaration) 
Public Property EdgeLevels As Integer
Visual Basic (Usage)Copy Code
Dim instance As MultiscaleEnhancementCommand
Dim value As Integer
 
instance.EdgeLevels = value
 
value = instance.EdgeLevels
C# 
public int EdgeLevels {get; set;}
C++/CLI 
public:
property int EdgeLevels {
   int get();
   void set (int value);
}

Return Value

The number of levels that will be used for edge enhancement. Valid values are from 1 to the maximum number of levels of the image. -1 will use the default number of levels (which is 3). This option will take effect only if MultiscaleEnhancementCommandFlags.EdgeEnhancement is set in the Flags property. Passing zero will return an error code.

Example

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also