Leadtools.ImageProcessing.Core Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
RakeRemoveCommand Constructor(Int32,Int32,Int32,Int32,Int32,Int32,Int32,Int32,Int32,Boolean)
See Also  Example
Leadtools.ImageProcessing.Core Namespace > RakeRemoveCommand Class > RakeRemoveCommand Constructor : RakeRemoveCommand Constructor(Int32,Int32,Int32,Int32,Int32,Int32,Int32,Int32,Int32,Boolean)



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.
Initializes a new RakeRemoveCommand class object with explicit parameters.

Syntax

Visual Basic (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 _
)
Visual Basic (Usage)Copy Code
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 RakeRemoveCommand(minLength, maxWidth, minWallHeight, maxWallPercent, maxSideteethLength, maxMidteethLength, teethSpacing, gaps, variance, autoFilter)
C# 
public RakeRemoveCommand( 
   int minLength,
   int maxWidth,
   int minWallHeight,
   int maxWallPercent,
   int maxSideteethLength,
   int maxMidteethLength,
   int teethSpacing,
   int gaps,
   int variance,
   bool autoFilter
)
C++/CLI 
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

Runs the RakeRemoveCommand on an image.

Visual BasicCopy Code
Public WithEvents rakeRemoveCommand_S2 As RakeRemoveCommand
Public Sub RakeRemoveConstructorExample()
   RasterCodecs.Startup()
   Dim codecs As New RasterCodecs()
   codecs.ThrowExceptionsOnInvalidImages = True

   Dim leadImage As RasterImage = codecs.Load(LeadtoolsExamples.Common.ImagesPath.Path + "Clean.tif")

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

   RasterCodecs.Shutdown()
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
C#Copy Code
public void RakeRemoveConstructorExample() 

    // Load an image 
    RasterCodecs.Startup(); 
    RasterCodecs codecs = new RasterCodecs(); 
    codecs.ThrowExceptionsOnInvalidImages = true; 
 
       RasterImage image =codecs.Load( "D:\\Lead15\\images2\\LEADTOOLS Images\\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); 
 
    RasterCodecs.Shutdown(); 

 
private void RakeRemoveEvent_S2(object sender, RakeRemoveCommandEventArgs e) 

    MessageBox.Show("Rake length is " + "( " + e.Length.ToString() + " )"); 
    e.Status = RemoveStatus.Remove; 
}

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also