Leadtools.ImageProcessing.Core Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
MultiscaleEnhancementCommand Constructor(Int32,MultiscaleEnhancementCommandType,MultiscaleEnhancementCommandFlags)
See Also  Example
Leadtools.ImageProcessing.Core Namespace > MultiscaleEnhancementCommand Class > MultiscaleEnhancementCommand Constructor : MultiscaleEnhancementCommand Constructor(Int32,MultiscaleEnhancementCommandType,MultiscaleEnhancementCommandFlags)



contrast
Fraction of contrast enhancement applied to the image. Valid values range from 0 - 10000, which are interpreted as 0 - 100. This value is internally divided by 10000. Greater values will produce stronger contrast.
type
Value that indicates the type of filter used.
flags
Flag that determines command behavior.
Initializes a new MultiscaleEnhancementCommand class object with explicit parameters.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal contrast As Integer, _
   ByVal type As MultiscaleEnhancementCommandType, _
   ByVal flags As MultiscaleEnhancementCommandFlags _
)
Visual Basic (Usage)Copy Code
Dim contrast As Integer
Dim type As MultiscaleEnhancementCommandType
Dim flags As MultiscaleEnhancementCommandFlags
 
Dim instance As MultiscaleEnhancementCommand(contrast, type, flags)
C# 
public MultiscaleEnhancementCommand( 
   int contrast,
   MultiscaleEnhancementCommandType type,
   MultiscaleEnhancementCommandFlags flags
)
C++/CLI 
public:
MultiscaleEnhancementCommand( 
   int contrast,
   MultiscaleEnhancementCommandType type,
   MultiscaleEnhancementCommandFlags flags
)

Parameters

contrast
Fraction of contrast enhancement applied to the image. Valid values range from 0 - 10000, which are interpreted as 0 - 100. This value is internally divided by 10000. Greater values will produce stronger contrast.
type
Value that indicates the type of filter used.
flags
Flag that determines command behavior.

Example

Run the MultiscaleEnhancementCommand on an image.

Visual BasicCopy Code
Public Sub MultiScaleEnhancementConstructorExample_S2()
   RasterCodecs.Startup()
   Dim codecs As New RasterCodecs()
   codecs.ThrowExceptionsOnInvalidImages = True

   Dim leadImage As RasterImage = codecs.Load(LeadtoolsExamples.Common.ImagesPath.Path + "Master.jpg")

   ' Prepare the command
   Dim command As MultiscaleEnhancementCommand = New MultiscaleEnhancementCommand(2000, MultiscaleEnhancementCommandType.Gaussian, MultiscaleEnhancementCommandFlags.EdgeEnhancement)
   ' Apply multiscale enhancement
   command.Run(leadImage)

   RasterCodecs.Shutdown()
End Sub
C#Copy Code
public void MultiScaleEnhancementConstructorExample_S2() 

   // Load an image 
   RasterCodecs.Startup(); 
   RasterCodecs codecs = new RasterCodecs(); 
   codecs.ThrowExceptionsOnInvalidImages = true; 
 
   RasterImage image = codecs.Load(LeadtoolsExamples.Common.ImagesPath.Path + "Master.jpg"); 
 
   // Prepare the command 
   MultiscaleEnhancementCommand command = new MultiscaleEnhancementCommand(2000, MultiscaleEnhancementCommandType.Gaussian, MultiscaleEnhancementCommandFlags.EdgeEnhancement); 
   // Apply multiscale enhancement 
   command.Run(image); 
 
   RasterCodecs.Shutdown(); 
}

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