←Select platform

AutoFilter Property

Summary
Gets or sets a value that indicates whether the rake removal is done by automatic filtering.
Syntax
C#
C++/CLI
Java
Python
public bool AutoFilter { get; set; } 
public boolean getAutoFilter(); 
public void setAutoFilter( 
   boolean booleanValue 
); 
public: 
property bool AutoFilter { 
   bool get(); 
   void set (    bool ); 
} 
AutoFilter # get and set (RakeRemoveCommand) 

Property Value

true if rake removal is performed by automatic filtering, otherwise it is false.

Example
C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing.Core; 
 
 
public void RakeRemoveCommandExample() 
{ 
   // 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(); 
   command.RakeRemove += new EventHandler<RakeRemoveCommandEventArgs>(RakeRemoveEvent_S1); 
   command.MinLength = 50; 
   command.MinWallHeight = 10; 
   command.MaxWidth = 3; 
   command.MaxWallPercent = 25; 
   command.MaxSideteethLength = 60; 
   command.MaxMidteethLength = 50; 
   command.Gaps = 1; 
   command.Variance = 1; 
   command.TeethSpacing = 5; 
   command.AutoFilter = false; 
 
   command.Run(image); 
 
} 
 
private void RakeRemoveEvent_S1(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.