←Select platform

TADAnisotropicDiffusionFlags Enumeration

Summary
Represents which type of flux to use when applying the Tensor-guided Anisotropic Diffusion filter.
Syntax
C#
Objective-C
C++/CLI
Java
Python
public enum TADAnisotropicDiffusionFlags   
typedef NS_OPTIONS(NSUInteger, LTTADAnisotropicDiffusionFlags) 
public final class TADAnisotropicDiffusionFlags 
    extends java.lang.Enum<TADAnisotropicDiffusionFlags> 
public enum class TADAnisotropicDiffusionFlags   
class TADAnisotropicDiffusionFlags(Enum): 
   ExponentialFlux = 1 
   QuadraticFlux = 2 
Members
ValueMemberDescription
1ExponentialFlux Use exponential flux, which favors high contrast edges over low contrast ones.
2QuadraticFlux Use quadratic flux, which favors wide regions over smaller ones.
Remarks

The default value is TADAnisotropicDiffusionFlags::QuadraticFlux.

Example
C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing.Core; 
 
public void TADAnisotropicDiffusionCommandExample() 
{ 
   // Load an image 
   RasterCodecs codecs = new RasterCodecs(); 
   codecs.ThrowExceptionsOnInvalidImages = true; 
 
   RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "IMAGE3.dcm")); 
 
   // Prepare the command 
   TADAnisotropicDiffusionCommand command = new TADAnisotropicDiffusionCommand(); 
 
   // Apply 
   command.Iterations = 10; 
   command.Lambda = 14; 
   command.Kappa = 30; 
   command.Flags = TADAnisotropicDiffusionFlags.QuadraticFlux; 
   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.