←Select platform

SRADAnisotropicDiffusionCommand Constructor(int,int,LeadRect)

Summary

Initializes a new AnisotropicDiffusionCommand class object with explicit parameters.

Syntax

C#
VB
Java
Objective-C
C++
Public Function New( _ 
   ByVal iterations As Integer, _ 
   ByVal lambda As Integer, _ 
   ByVal rect As Leadtools.LeadRect _ 
) 
- (instancetype)initWithIterations:(NSInteger)iterations 
                            lambda:(NSInteger)lambda 
                              rect:(LeadRect)rect 
             
public SRADAnisotropicDiffusionCommand( 
   int iterations,  
   int lambda,  
   LeadRect rect 
) 
             
public: 
SRADAnisotropicDiffusionCommand(  
   int iterations, 
   int lambda, 
   Leadtools.LeadRect rect 
) 

Parameters

iterations
Number of iterations the filter will perform.

lambda
Smoothing time step.

rect
Reference to a LeadRect that covers a region of uniform speckles.

Example

C#
VB
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing.Core; 
 
public void SRADAnisotropicDiffusionConstructorExample() 
{ 
   // Load an image 
   RasterCodecs codecs = new RasterCodecs(); 
   codecs.ThrowExceptionsOnInvalidImages = true; 
 
   RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "IMAGE3.dcm")); 
   // Prepare the command 
   SRADAnisotropicDiffusionCommand command = new SRADAnisotropicDiffusionCommand(10, 50, new LeadRect(150, 300, 30, 30)); 
   // Apply SRAD Anisotropic Diffusion filter  
   command.Run(image); 
 
} 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images"; 
} 
Imports Leadtools 
Imports Leadtools.Codecs 
Imports Leadtools.ImageProcessing.Core 
      Leadtools.Examples.Support.SetLicense() 
 
Public Sub SRADAnisotropicDiffusionConstructorExample() 
   ' Load an image 
   Dim codecs As RasterCodecs = New RasterCodecs() 
   codecs.ThrowExceptionsOnInvalidImages = True 
 
   Dim image As RasterImage = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "IMAGE3.dcm")) 
   ' Prepare the command 
   Dim command As SRADAnisotropicDiffusionCommand = New SRADAnisotropicDiffusionCommand(10, 50, New LeadRect(150, 300, 30, 30)) 
   ' Apply SRAD Anisotropic Diffusion filter  
   command.Run(image) 
 
End Sub 
 
Public NotInheritable Class LEAD_VARS 
   Public Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images" 
End Class 

Requirements

Target Platforms

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.ImageProcessing.Core Assembly