LEADTOOLS Image Processing (Leadtools.ImageProcessing.Core assembly)
LEAD Technologies, Inc

RakeRemoveCommand Constructor(Int32,Int32,Int32,Int32,Int32,Int32,Int32,Int32,Int32,Boolean)

Example 





Minimum Length of the base line of the rake.
Maximum width at any given area of the base line of the rake.
Minimum height of the wall that intercepts the rake.
Maximum percentage of that walls that intercept the rake.
Maximum length of the side vertical structures of the rake.
Maximum length of the middle vertical structures of the rake.
Approximate space between vertical middle structures belonging to the rake in pixels. Higher values yield faster results, lower values yield more accurate results.
Maximum length of a break or a hole in the base line of the rake.
>Amount of width change that is tolerated between adjacent line slices the constitute the base line of the rake.
A value that indicates whether to filter the image from rakes using auto filter or not.
Initializes a new RakeRemoveCommand class object with explicit parameters. .NET support
Syntax
public RakeRemoveCommand( 
   int minLength,
   int maxWidth,
   int minWallHeight,
   int maxWallPercent,
   int maxSideteethLength,
   int maxMidteethLength,
   int teethSpacing,
   int gaps,
   int variance,
   bool autoFilter
)
'Declaration
 
Public Function New( _
   ByVal minLength As Integer, _
   ByVal maxWidth As Integer, _
   ByVal minWallHeight As Integer, _
   ByVal maxWallPercent As Integer, _
   ByVal maxSideteethLength As Integer, _
   ByVal maxMidteethLength As Integer, _
   ByVal teethSpacing As Integer, _
   ByVal gaps As Integer, _
   ByVal variance As Integer, _
   ByVal autoFilter As Boolean _
)
'Usage
 
Dim minLength As Integer
Dim maxWidth As Integer
Dim minWallHeight As Integer
Dim maxWallPercent As Integer
Dim maxSideteethLength As Integer
Dim maxMidteethLength As Integer
Dim teethSpacing As Integer
Dim gaps As Integer
Dim variance As Integer
Dim autoFilter As Boolean
 
Dim instance As New RakeRemoveCommand(minLength, maxWidth, minWallHeight, maxWallPercent, maxSideteethLength, maxMidteethLength, teethSpacing, gaps, variance, autoFilter)
public RakeRemoveCommand( 
   int minLength,
   int maxWidth,
   int minWallHeight,
   int maxWallPercent,
   int maxSideteethLength,
   int maxMidteethLength,
   int teethSpacing,
   int gaps,
   int variance,
   bool autoFilter
)
function RakeRemoveCommand( 
   minLength ,
   maxWidth ,
   minWallHeight ,
   maxWallPercent ,
   maxSideteethLength ,
   maxMidteethLength ,
   teethSpacing ,
   gaps ,
   variance ,
   autoFilter 
)
public:
RakeRemoveCommand( 
   int minLength,
   int maxWidth,
   int minWallHeight,
   int maxWallPercent,
   int maxSideteethLength,
   int maxMidteethLength,
   int teethSpacing,
   int gaps,
   int variance,
   bool autoFilter
)

Parameters

minLength
Minimum Length of the base line of the rake.
maxWidth
Maximum width at any given area of the base line of the rake.
minWallHeight
Minimum height of the wall that intercepts the rake.
maxWallPercent
Maximum percentage of that walls that intercept the rake.
maxSideteethLength
Maximum length of the side vertical structures of the rake.
maxMidteethLength
Maximum length of the middle vertical structures of the rake.
teethSpacing
Approximate space between vertical middle structures belonging to the rake in pixels. Higher values yield faster results, lower values yield more accurate results.
gaps
Maximum length of a break or a hole in the base line of the rake.
variance
>Amount of width change that is tolerated between adjacent line slices the constitute the base line of the rake.
autoFilter
A value that indicates whether to filter the image from rakes using auto filter or not.
Example
 
Public WithEvents rakeRemoveCommand_S2 As RakeRemoveCommand
Public Sub RakeRemoveConstructorExample()
   Dim codecs As New RasterCodecs()
   codecs.ThrowExceptionsOnInvalidImages = True

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

   ' Prepare the command
   rakeRemoveCommand_S2 = New RakeRemoveCommand(50, 3, 10, 25, 60, 50, 5, 1, 1, False)
   rakeRemoveCommand_S2.Run(leadImage)

End Sub

Private Sub RakeRemoveCommand_RakeRemove_S2(ByVal sender As Object, ByVal e As RakeRemoveCommandEventArgs) Handles rakeRemoveCommand_S2.RakeRemove
   MessageBox.Show("Rake length is " + "( " + e.Length.ToString() + " )")

   e.Status = RemoveStatus.Remove
End Sub

Public NotInheritable Class LEAD_VARS
   Public Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"
End Class
public void RakeRemoveConstructorExample()
     {
         // Load an image
         RasterCodecs codecs = new RasterCodecs();
         codecs.ThrowExceptionsOnInvalidImages = true;

         RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "Master.jpg"));

         // Prepare the command
         RakeRemoveCommand command = new RakeRemoveCommand(50, 3, 10, 25, 60, 50, 5, 1, 1, false);
         command.RakeRemove += new EventHandler<RakeRemoveCommandEventArgs>(RakeRemoveEvent_S2);
         command.Run(image);

     }

     private void RakeRemoveEvent_S2(object sender, RakeRemoveCommandEventArgs e)
     {
         MessageBox.Show("Rake length is " + "( " + e.Length.ToString() + " )");
         e.Status = RemoveStatus.Remove;
     }

static class LEAD_VARS
{
   public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images";
}
//    [TestMethod]
//    public async Task RakeRemoveConstructorExample()
//    {
//        // Load an image
//        RasterCodecs codecs = new RasterCodecs();
//        codecs.ThrowExceptionsOnInvalidImages = true;

//        // Load the image
//        string srcFileName = @"Assets\Image1.cmp";
//        StorageFile loadFile = await Tools.AppInstallFolder.GetFileAsync(srcFileName);
//        RasterImage image = await codecs.LoadAsync(LeadStreamFactory.Create(loadFile));

//        // Prepare the command
//        RakeRemoveCommand command = new RakeRemoveCommand(50, 3, 10, 25, 60, 50, 5, 1, 1, false);
//        command.RakeRemove += new EventHandler<RakeRemoveCommandEventArgs>(RakeRemoveEvent_S2);
//        command.Run(image);

//    }

//    private void RakeRemoveEvent_S2(object sender, RakeRemoveCommandEventArgs e)
//    {
//        Debug.WriteLine("Rake length is " + "( " + e.Length.ToString() + " )");
//        e.Status = RemoveStatus.Remove;
//    }
//
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

RakeRemoveCommand Class
RakeRemoveCommand Members
Overload List

 

 


Products | Support | Contact Us | Copyright Notices

© 2006-2012 All Rights Reserved. LEAD Technologies, Inc.