←Select platform

Flags Property

Summary
Gets or sets a value that determines the behavior of the smoothing process.
Syntax
C#
Objective-C
C++/CLI
Java
Python
public SmoothCommandFlags Flags { get; set; } 
@property (nonatomic, assign) LTSmoothCommandFlags flags; 
public int getFlags(); 
public void setFlags( 
   int intValue 
); 
public: 
property SmoothCommandFlags Flags { 
   SmoothCommandFlags get(); 
   void set (    SmoothCommandFlags ); 
} 
Flags # get and set (SmoothCommand) 

Property Value

Value that determines the behavior of the smoothing process.

Example
C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing.Core; 
 
public void SmoothCommandExample() 
{ 
   // Load an image 
   RasterCodecs codecs = new RasterCodecs(); 
   codecs.ThrowExceptionsOnInvalidImages = true; 
 
   RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "clean.tif")); 
 
   // Prepare the command 
   SmoothCommand command = new SmoothCommand(); 
   command.Smooth += new EventHandler<SmoothCommandEventArgs>(SmoothEventExample_S1); 
   command.Flags = SmoothCommandFlags.FavorLong; 
   command.Length = 2; 
 
   command.Run(image); 
 
} 
 
private void SmoothEventExample_S1(object sender, SmoothCommandEventArgs e) 
{ 
   string BumpOrNeck; 
   string Direction; 
 
   if (e.BumpNick == SmoothCommandBumpNickType.Bump) 
      BumpOrNeck = "Bump"; 
   else 
      BumpOrNeck = "Neck"; 
 
   if (e.Direction == SmoothCommandDirectionType.Horizontal) 
      Direction = "Horizontal"; 
   else 
      Direction = "Vertical"; 
 
   System.Diagnostics.Debug.WriteLine("Type " + BumpOrNeck + 
      "\n Row Column " + e.StartRow.ToString() + e.StartColumn.ToString() + 
      "\n Length " + e.Length + 
      "\n Direction " + Direction); 
 
   e.Status = RemoveStatus.Remove; 
} 
 
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.