←Select platform

SRADAnisotropicDiffusionCommand Constructor(int,int,LeadRect)

Summary
Initializes a new AnisotropicDiffusionCommand class object with explicit parameters.
Syntax
C#
Objective-C
C++/CLI
Java
Python
- (instancetype)initWithIterations:(NSInteger)iterations lambda:(NSInteger)lambda rect:(LeadRect)rect NS_DESIGNATED_INITIALIZER; 
public SRADAnisotropicDiffusionCommand( 
   int iterations, 
   int lambda, 
   LeadRect rect 
); 
public: 
SRADAnisotropicDiffusionCommand(  
   int iterations, 
   int lambda, 
   LeadRect rect 
) 
__init__(self,iterations,lambda,rect) # Overloaded constructor 

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#
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:\LEADTOOLS22\Resources\Images"; 
} 
Requirements

Target Platforms

Help Version 22.0.2023.11.1
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.ImageProcessing.Core Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.