public class LineRemoveCommand : RasterCommand Public Class LineRemoveCommandInherits RasterCommand
@interface LTLineRemoveCommand : LTRasterCommand public class LineRemoveCommand extends RasterCommand public ref class LineRemoveCommand : public RasterCommand This command is available in the Document/Medical Toolkits.
For more information, refer to Cleaning Up 1-Bit Images.
Run the LineRemoveCommand on an image.
using Leadtools;using Leadtools.Codecs;using Leadtools.ImageProcessing.Core;public void LineRemoveCommandExample(){// Load an imageRasterCodecs codecs = new RasterCodecs();codecs.ThrowExceptionsOnInvalidImages = true;RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "Clean.tif"));// Prepare the commandLineRemoveCommand command = new LineRemoveCommand();command.LineRemove += new EventHandler<LineRemoveCommandEventArgs>(LineRemoveEvent_S1);command.Type = LineRemoveCommandType.Horizontal;command.Flags = LineRemoveCommandFlags.UseGap;command.GapLength = 2;command.MaximumLineWidth = 5;command.MinimumLineLength = 200;command.MaximumWallPercent = 10;command.Wall = 7;command.Run(image);}private void LineRemoveEvent_S1(object sender, LineRemoveCommandEventArgs e){MessageBox.Show("Row Col " + "( " + e.StartRow.ToString() + ", " + e.StartColumn + " )" +"\n Length " + e.Length.ToString());e.Status = RemoveStatus.Remove;}static class LEAD_VARS{public const string ImagesDir = @"C:\LEADTOOLS21\Resources\Images";}
Imports LeadtoolsImports Leadtools.CodecsImports Leadtools.ImageProcessing.CorePublic WithEvents lineRemoveCommand_S1 As LineRemoveCommandPublic Sub LineRemoveCommandExample()Dim codecs As New RasterCodecs()codecs.ThrowExceptionsOnInvalidImages = TrueDim leadImage As RasterImage = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "Clean.tif"))' Prepare the commandlineRemoveCommand_S1 = New LineRemoveCommandlineRemoveCommand_S1.Type = LineRemoveCommandType.HorizontallineRemoveCommand_S1.Flags = LineRemoveCommandFlags.UseGaplineRemoveCommand_S1.GapLength = 2lineRemoveCommand_S1.MaximumLineWidth = 5lineRemoveCommand_S1.MinimumLineLength = 200lineRemoveCommand_S1.MaximumWallPercent = 10lineRemoveCommand_S1.Wall = 7lineRemoveCommand_S1.Run(leadImage)End SubPrivate Sub LineRemoveCommand_LineRemove_S1(ByVal sender As Object, ByVal e As LineRemoveCommandEventArgs) Handles lineRemoveCommand_S1.LineRemoveMessageBox.Show("Row Col " + "( " + e.StartRow.ToString() + ", " + e.StartColumn.ToString() + " )" +Chr(13) + " Length " + e.Length.ToString())e.Status = RemoveStatus.RemoveEnd SubPublic NotInheritable Class LEAD_VARSPublic Const ImagesDir As String = "C:\LEADTOOLS21\Resources\Images"End Class
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document
