←Select platform

RakeRemoveCommand Constructor(int,int,int,int,int,int,int,int,int,bool)

Summary
Initializes a new RakeRemoveCommand class object with explicit parameters.
Syntax
C#
C++/CLI
Java
Python
public RakeRemoveCommand( 
   int intValue  
   int intValue2  
   int intValue3  
   int intValue4  
   int intValue5  
   int intValue6  
   int intValue7  
   int intValue8  
   int intValue9  
   boolean booleanValue 
); 
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.

C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing.Core; 
 
 
public void RakeRemoveConstructorExample() 
{ 
   // Load an image 
   RasterCodecs codecs = new RasterCodecs(); 
   codecs.ThrowExceptionsOnInvalidImages = true; 
 
   RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, @"Forms\Forms to be Recognized\OCR\FCC-107_OCR_Filled.tif")); 
 
   // 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:\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.