←Select platform

MaxWidth Property

Summary
Gets or sets the maximum width of the base line of the rake.
Syntax
C#
C++/CLI
Java
Python
public int MaxWidth { get; set; } 
public int getMaxWidth(); 
public void setMaxWidth( 
   int intValue 
); 
public: 
property int MaxWidth { 
   int get(); 
   void set (    int ); 
} 
MaxWidth # get and set (RakeRemoveCommand) 

Property Value

Maximum width of the base line of the rake.

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.