Removes horizontal and vertical lines in a 1-bit black and white image.
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:\Users\Public\Documents\LEADTOOLS 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:\Users\Public\Documents\LEADTOOLS Images"End Class
c#[Silverlight C# Example]using Leadtools;using Leadtools.Examples;using Leadtools.Codecs;using Leadtools.ImageProcessing.Core;public void LineRemoveCommandExample(RasterImage image, Stream outStream){// 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);// Save result imageRasterCodecs codecs = new RasterCodecs();codecs.Save(image, outStream, RasterImageFormat.CcittGroup4, 1);image.Dispose();}private void LineRemoveEvent_S1(object sender, LineRemoveCommandEventArgs e){Debug.WriteLine("Row Col " + "( " + e.StartRow.ToString() + ", " + e.StartColumn + " )" +"\n Length " + e.Length.ToString());e.Status = RemoveStatus.Remove;}vb[Silverlight VB Example]Imports LeadtoolsImports Leadtools.CodecsImports Leadtools.ImageProcessing.CorePublic Sub LineRemoveCommandExample(ByVal image As RasterImage, ByVal outStream As Stream)' Prepare the commandDim command As LineRemoveCommand = New LineRemoveCommand()AddHandler command.LineRemove, AddressOf LineRemoveEvent_S1command.Type = LineRemoveCommandType.Horizontalcommand.Flags = LineRemoveCommandFlags.UseGapcommand.GapLength = 2command.MaximumLineWidth = 5command.MinimumLineLength = 200command.MaximumWallPercent = 10command.Wall = 7command.Run(image)' Save result imageDim codecs As RasterCodecs = New RasterCodecs()codecs.Save(image, outStream, RasterImageFormat.CcittGroup4, 1)image.Dispose()End SubPrivate Sub LineRemoveEvent_S1(ByVal sender As Object, ByVal e As LineRemoveCommandEventArgs)Debug.WriteLine("Row Col " & "( " & e.StartRow.ToString() & ", " & e.StartColumn & " )" & Constants.vbLf & " Length " & e.Length.ToString())e.Status = RemoveStatus.RemoveEnd Sub
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
