Smoothes the bumps and fills in the nicks of a 1-bit black and white image. This command is available in the Document/Medical Toolkits.
public class SmoothCommand : RasterCommand Public Class SmoothCommandInherits RasterCommand
@interface LTSmoothCommand : LTRasterCommand public class SmoothCommand extends RasterCommand public ref class SmoothCommand : public RasterCommand
For more information, refer to Cleaning Up 1-Bit Images.
Run the SmoothCommand on an image.
using Leadtools;using Leadtools.Codecs;using Leadtools.ImageProcessing.Core;public void SmoothCommandExample(){// Load an imageRasterCodecs codecs = new RasterCodecs();codecs.ThrowExceptionsOnInvalidImages = true;RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "clean.tif"));// Prepare the commandSmoothCommand command = new SmoothCommand();command.Smooth += new EventHandler<SmoothCommandEventArgs>(SmoothEventExample_S1);command.Flags = SmoothCommandFlags.FavorLong;command.Length = 2;command.Run(image);}private void SmoothEventExample_S1(object sender, SmoothCommandEventArgs e){string BumpOrNeck;string Direction;if (e.BumpNick == SmoothCommandBumpNickType.Bump)BumpOrNeck = "Bump";elseBumpOrNeck = "Neck";if (e.Direction == SmoothCommandDirectionType.Horizontal)Direction = "Horizontal";elseDirection = "Vertical";System.Diagnostics.Debug.WriteLine("Type " + BumpOrNeck +"\n Row Column " + e.StartRow.ToString() + e.StartColumn.ToString() +"\n Length " + e.Length +"\n Direction " + Direction);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 smoothEventExample_S1 As SmoothCommandPublic Sub SmoothCommandExample()Dim codecs As New RasterCodecs()codecs.ThrowExceptionsOnInvalidImages = TrueDim leadImage As RasterImage = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "Clean.tif"))' Prepare the commandsmoothEventExample_S1 = New SmoothCommandsmoothEventExample_S1.Flags = SmoothCommandFlags.FavorLongsmoothEventExample_S1.Length = 2smoothEventExample_S1.Run(leadImage)End SubPrivate Sub SmoothEventExample_SmoothCommand_S1(ByVal sender As Object, ByVal e As SmoothCommandEventArgs) Handles smoothEventExample_S1.SmoothDim BumpOrNeck As StringDim Direction As StringIf (e.BumpNick = SmoothCommandBumpNickType.Bump) ThenBumpOrNeck = "Bump"ElseBumpOrNeck = "Neck"End IfIf (e.Direction = SmoothCommandDirectionType.Horizontal) ThenDirection = "Horizontal"ElseDirection = "Vertical"End IfSystem.Diagnostics.Debug.WriteLine("Type " + BumpOrNeck.ToString() +Chr(13) + " Row Column " + e.StartRow.ToString() + e.StartColumn.ToString() +Chr(13) + " Length " + e.Length.ToString() +Chr(13) + " Direction " + Direction.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 SmoothCommandExample(RasterImage image, Stream outStream){// Prepare the commandSmoothCommand command = new SmoothCommand();command.Smooth += new EventHandler<SmoothCommandEventArgs>(SmoothEventExample_S1);command.Flags = SmoothCommandFlags.FavorLong;command.Length = 2;command.Run(image);// Save result imageRasterCodecs codecs = new RasterCodecs();codecs.Save(image, outStream, RasterImageFormat.CcittGroup4, 1);image.Dispose();}private void SmoothEventExample_S1(object sender, SmoothCommandEventArgs e){string BumpOrNeck;string Direction;if (e.BumpNick == SmoothCommandBumpNickType.Bump)BumpOrNeck = "Bump";elseBumpOrNeck = "Neck";if (e.Direction == SmoothCommandDirectionType.Horizontal)Direction = "Horizontal";elseDirection = "Vertical";Debug.WriteLine("Type " + BumpOrNeck +"\n Row Column " + e.StartRow.ToString() + e.StartColumn.ToString() +"\n Length " + e.Length +"\n Direction " + Direction);e.Status = RemoveStatus.Remove;}vb[Silverlight VB Example]Imports LeadtoolsImports Leadtools.CodecsImports Leadtools.ImageProcessing.CorePublic Sub SmoothCommandExample(ByVal image As RasterImage, ByVal outStream As Stream)' Prepare the commandDim command As SmoothCommand = New SmoothCommand()AddHandler command.Smooth, AddressOf SmoothEventExample_S1command.Flags = SmoothCommandFlags.FavorLongcommand.Length = 2command.Run(image)' Save result imageDim codecs As RasterCodecs = New RasterCodecs()codecs.Save(image, outStream, RasterImageFormat.CcittGroup4, 1)image.Dispose()End SubPrivate Sub SmoothEventExample_S1(ByVal sender As Object, ByVal e As SmoothCommandEventArgs)Dim BumpOrNeck As StringDim Direction As StringIf e.BumpNick = SmoothCommandBumpNickType.Bump ThenBumpOrNeck = "Bump"ElseBumpOrNeck = "Neck"End IfIf e.Direction = SmoothCommandDirectionType.Horizontal ThenDirection = "Horizontal"ElseDirection = "Vertical"End IfDebug.WriteLine("Type " & BumpOrNeck & Constants.vbLf & " Row Column " & e.StartRow.ToString() & e.StartColumn.ToString() & Constants.vbLf &" Length " & e.Length + Constants.vbLf & " Direction " & Direction)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
