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




Gets or sets the number of levels that will be used for Latitude reduction.

Syntax

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

Return Value

The number of levels that will be used for Latitude reduction. Valid values are from 1 to maximum number of levels of the image. You can also pass -1 to use the default level value (which is 5). This option will be used only if MultiscaleEnhancementCommandFlags.LatitudeReduction 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