←Select platform

Iterations Property

Summary
Gets or sets the number of iterations of the filter.
Syntax
C#
Objective-C
C++/CLI
Java
Python
public int Iterations { get; set; } 
@property (nonatomic, assign) NSInteger iterations; 
public int getIterations(); 
public void setIterations( 
   int intValue 
); 
public: 
property int Iterations { 
   int get(); 
   void set (    int ); 
} 
Iterations # get and set (SRADAnisotropicDiffusionCommand) 

Property Value

Number of iterations the filter will perform.

Example
C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing.Core; 
 
public void SRADAnisotropicDiffusionCommandExample() 
{ 
   // 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(); 
 
   // Apply 
   command.Iterations = 10; 
   command.Lambda = 50; 
   command.Rect = new LeadRect(150, 300, 30, 30); 
   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.