Error processing SSI file
LEADTOOLS Image Processing (Leadtools.ImageProcessing.Core assembly)

Show in webframe

SRADAnisotropicDiffusionCommand Constructor(Int32,Int32,LeadRect)








Number of iterations the filter will perform.
Smoothing time step.
Reference to a LeadRect that covers a region of uniform speckles.
Initializes a new AnisotropicDiffusionCommand class object with explicit parameters.
Syntax
public SRADAnisotropicDiffusionCommand( 
   int iterations,
   int lambda,
   LeadRect rect
)
'Declaration
 
Public Function New( _
   ByVal iterations As Integer, _
   ByVal lambda As Integer, _
   ByVal rect As LeadRect _
)
'Usage
 
Dim iterations As Integer
Dim lambda As Integer
Dim rect As LeadRect
 
Dim instance As New SRADAnisotropicDiffusionCommand(iterations, lambda, rect)
public SRADAnisotropicDiffusionCommand( 
   int iterations,
   int lambda,
   LeadRect rect
)
- (instancetype)initWithIterations:(NSInteger)iterations
                            lambda:(NSInteger)lambda
                              rect:(LeadRect)rect
            
public SRADAnisotropicDiffusionCommand(
   int iterations, 
   int lambda, 
   LeadRect rect
)
            
function SRADAnisotropicDiffusionCommand( 
   iterations ,
   lambda ,
   rect 
)
public:
SRADAnisotropicDiffusionCommand( 
   int iterations,
   int lambda,
   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
Copy Code  
Imports Leadtools
Imports Leadtools.Codecs
Imports Leadtools.ImageProcessing.Core

   
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
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";
}
Requirements

Target Platforms

See Also

Reference

SRADAnisotropicDiffusionCommand Class
SRADAnisotropicDiffusionCommand Members
Overload List

Error processing SSI file