LEADTOOLS Image Processing (Leadtools.ImageProcessing.Core assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
SmoothCommandEventArgs Class
See Also  Members  
Leadtools.ImageProcessing.Core Namespace : SmoothCommandEventArgs Class



Handles each bump or nick found by the SmoothCommand. Supported in Silverlight, Windows Phone 7

Object Model

SmoothCommandEventArgs Class

Syntax

Visual Basic (Declaration) 
Public Class SmoothCommandEventArgs 
   Inherits System.EventArgs
Visual Basic (Usage)Copy Code
Dim instance As SmoothCommandEventArgs
C# 
public class SmoothCommandEventArgs : System.EventArgs 
C++/CLI 
public ref class SmoothCommandEventArgs : public System.EventArgs 

Example

Run the SmoothCommand on an image.

Visual BasicCopy Code
Public WithEvents smoothEventExample_S4 As SmoothCommand
Public Sub SmoothCommandEventArgsExample()
   Dim codecs As New RasterCodecs()
   codecs.ThrowExceptionsOnInvalidImages = True

   Dim leadImage As RasterImage = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "Clean.tif"))

   ' Prepare the command
   smoothEventExample_S4 = New SmoothCommand(SmoothCommandFlags.FavorLong Or SmoothCommandFlags.SingleRegion Or SmoothCommandFlags.LeadRegion, 2)
   smoothEventExample_S4.Run(leadImage)

End Sub

Private Sub SmoothEventExample_SmoothCommand(ByVal sender As Object, ByVal e As SmoothCommandEventArgs) Handles smoothEventExample_S4.Smooth
   Dim ee As SmoothCommandEventArgs = New SmoothCommandEventArgs(e.Image, e.BumpNick, e.StartRow, e.StartColumn, e.Length, e.Direction)

   Dim BumpOrNeck As String
   If (ee.BumpNick = SmoothCommandBumpNickType.Bump) Then
      BumpOrNeck = "Bump"
   Else
      BumpOrNeck = "Neck"
   End If

   Dim Direction As String
   If (ee.Direction = SmoothCommandDirectionType.Horizontal) Then
      Direction = "Horizontal"
   Else
      Direction = "Vertical"
   End If

   e.Status = RemoveStatus.Remove

   MessageBox.Show("The width of the image is: " & e.Image.Width & Chr(13) & "The height of the image is: " & e.Image.Height & Chr(13) & " Bump Or Neck : " & BumpOrNeck & Chr(13) & "Direction : " & Direction)
End Sub

Public NotInheritable Class LEAD_VARS
   Public Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"
End Class
C#Copy Code
public void SmoothCommandEventArgsExample()
   {
      // 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(SmoothCommandFlags.FavorLong | SmoothCommandFlags.SingleRegion | SmoothCommandFlags.LeadRegion, 2);
      command.Smooth += new EventHandler<SmoothCommandEventArgs>(SmoothEventExample_S4);
      command.Run(image);

   }

   private void SmoothEventExample_S4(object sender, SmoothCommandEventArgs e)
   {
      SmoothCommandEventArgs ee = new SmoothCommandEventArgs(e.Image, e.BumpNick, e.StartRow, e.StartColumn, e.Length, e.Direction);

      string BumpOrNeck;
      if (ee.BumpNick == SmoothCommandBumpNickType.Bump)
         BumpOrNeck = "Bump";
      else
         BumpOrNeck = "Neck";

      string Direction;
      if (ee.Direction == SmoothCommandDirectionType.Horizontal)
         Direction = "Horizontal";
      else
         Direction = "Vertical";

      e.Status = RemoveStatus.Remove;

      MessageBox.Show("The width of the image is: " + e.Image.Width + "\n" + "The height of the image is: " + e.Image.Height + "\n" + " Bump Or Neck : " + BumpOrNeck + "\n" + "Direction : " + Direction);
   }

static class LEAD_VARS
{
   public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images";
}
SilverlightCSharpCopy Code
public void SmoothCommandEventArgsExample(RasterImage image)
{
   // Load an image
   RasterCodecs codecs = new RasterCodecs();
   codecs.ThrowExceptionsOnInvalidImages = true;

   // Prepare the command
   SmoothCommand command = new SmoothCommand(SmoothCommandFlags.FavorLong | SmoothCommandFlags.SingleRegion | SmoothCommandFlags.LeadRegion, 2);
   command.Smooth += new EventHandler<SmoothCommandEventArgs>(SmoothEventExample_S4);
   command.Run(image);
}

private void SmoothEventExample_S4(object sender, SmoothCommandEventArgs e)
{
   SmoothCommandEventArgs ee = new SmoothCommandEventArgs(e.Image, e.BumpNick, e.StartRow, e.StartColumn, e.Length, e.Direction);

   string BumpOrNeck;
   if (ee.BumpNick == SmoothCommandBumpNickType.Bump)
      BumpOrNeck = "Bump";
   else
      BumpOrNeck = "Neck";

   string Direction;
   if (ee.Direction == SmoothCommandDirectionType.Horizontal)
      Direction = "Horizontal";
   else
      Direction = "Vertical";

   e.Status = RemoveStatus.Remove;

   Debug.WriteLine("The width of the image is: " + e.Image.Width + "\n" + "The height of the image is: " + e.Image.Height + "\n" + " Bump Or Neck : " + BumpOrNeck + "\n" + "Direction : " + Direction);
}
SilverlightVBCopy Code
Public Sub SmoothCommandEventArgsExample(ByVal image As RasterImage)
   ' Load an image
   Dim codecs As RasterCodecs = New RasterCodecs()
   codecs.ThrowExceptionsOnInvalidImages = True

   ' Prepare the command
   Dim command As SmoothCommand = New SmoothCommand(SmoothCommandFlags.FavorLong Or SmoothCommandFlags.SingleRegion Or SmoothCommandFlags.LeadRegion, 2)
   AddHandler command.Smooth, AddressOf SmoothEventExample_S4
   command.Run(image)
End Sub

Private Sub SmoothEventExample_S4(ByVal sender As Object, ByVal e As SmoothCommandEventArgs)
   Dim ee As SmoothCommandEventArgs = New SmoothCommandEventArgs(e.Image, e.BumpNick, e.StartRow, e.StartColumn, e.Length, e.Direction)

   Dim BumpOrNeck As String
   If ee.BumpNick = SmoothCommandBumpNickType.Bump Then
      BumpOrNeck = "Bump"
   Else
      BumpOrNeck = "Neck"
   End If

   Dim Direction As String
   If ee.Direction = SmoothCommandDirectionType.Horizontal Then
      Direction = "Horizontal"
   Else
      Direction = "Vertical"
   End If

   e.Status = RemoveStatus.Remove

   Debug.WriteLine("The width of the image is: " & e.Image.Width + Constants.vbLf & "The height of the image is: " & e.Image.Height + Constants.vbLf & " Bump Or Neck : " & BumpOrNeck & Constants.vbLf & "Direction : " & Direction)
End Sub

Inheritance Hierarchy

System.Object
   System.EventArgs
      Leadtools.ImageProcessing.Core.SmoothCommandEventArgs

Requirements

Target Platforms: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)

See Also