C#
VB
Java
Objective-C
WinRT C#
C++
Handles each dot found by DotRemoveCommand.
public class DotRemoveCommandEventArgs : EventArgs Public Class DotRemoveCommandEventArgsInherits System.EventArgs
public sealed class DotRemoveCommandEventArgs : System.EventArgs @interface LTDotRemoveCommandEventArgs : NSObject public class DotRemoveCommandEvent extends LeadEvent function Leadtools.ImageProcessing.Core.DotRemoveCommandEventArgs() public ref class DotRemoveCommandEventArgs : public System.EventArgs Run the DotRemoveCommand on an image.
using Leadtools;using Leadtools.Codecs;using Leadtools.ImageProcessing.Core;public void DotRemoveCommandEventArgsExample(){// Load an imageRasterCodecs codecs = new RasterCodecs();codecs.ThrowExceptionsOnInvalidImages = true;RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "Clean.tif"));// Prepare the commandDotRemoveCommand command = new DotRemoveCommand(DotRemoveCommandFlags.UseSize | DotRemoveCommandFlags.CallBackRegion, 1, 1, 10, 10);command.DotRemove += new EventHandler<DotRemoveCommandEventArgs>(DotRemoveEvent_S4);command.Run(image);}private void DotRemoveEvent_S4(object sender, DotRemoveCommandEventArgs e){DotRemoveCommandEventArgs ee = new DotRemoveCommandEventArgs(e.Image, e.Region, e.BoundingRectangle, e.WhiteCount, e.BlackCount);// Do not remove the speck if it contains any white pixelsif (e.WhiteCount > 0){e.Status = RemoveStatus.NoRemove;}else{e.Status = RemoveStatus.Remove;}if (e.Region != null){e.Image.SetRegion(null, e.Region, RasterRegionCombineMode.AndNotRegion);}}static class LEAD_VARS{public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images";}
Imports LeadtoolsImports Leadtools.CodecsImports Leadtools.ImageProcessing.CoreLeadtools.Examples.Support.SetLicense()Public WithEvents dotRemoveCommandCallback_S4 As DotRemoveCommandPublic Sub DotRemoveCommandEventArgsExample()Dim codecs As New RasterCodecs()codecs.ThrowExceptionsOnInvalidImages = TrueDim leadImage As RasterImage = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "Clean.tif"))' Prepare the commanddotRemoveCommandCallback_S4 = New DotRemoveCommand(DotRemoveCommandFlags.UseSize Or DotRemoveCommandFlags.CallBackRegion, 1, 1, 10, 10)dotRemoveCommandCallback_S4.Run(leadImage)End SubPrivate Sub DotRemoveCommand_DotRemove_S4(ByVal sender As Object, ByVal e As DotRemoveCommandEventArgs) Handles dotRemoveCommandCallback_S4.DotRemoveDim ee As DotRemoveCommandEventArgs = New DotRemoveCommandEventArgs(e.Image, e.Region, e.BoundingRectangle, e.WhiteCount, e.BlackCount)'Do not remove the speck if it contains any white pixelsIf (e.WhiteCount > 0) Thene.Status = RemoveStatus.NoRemoveElsee.Status = RemoveStatus.RemoveEnd IfIf Not (e.Region Is Nothing) Thene.Image.SetRegion(Nothing, e.Region, RasterRegionCombineMode.AndNotRegion)End IfEnd SubPublic NotInheritable Class LEAD_VARSPublic Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"End Class
using Leadtools;using Leadtools.Examples;using Leadtools.Codecs;using Leadtools.ImageProcessing.Core;public void DotRemoveCommandEventArgsExample(RasterImage image, Stream outStream){// Prepare the commandDotRemoveCommand command = new DotRemoveCommand(DotRemoveCommandFlags.UseSize | DotRemoveCommandFlags.CallBackRegion, 1, 1, 10, 10);command.DotRemove += new EventHandler<DotRemoveCommandEventArgs>(DotRemoveEvent_S4);command.Run(image);// Save result imageRasterCodecs codecs = new RasterCodecs();codecs.Save(image, outStream, RasterImageFormat.CcittGroup4, 1);image.Dispose();}private void DotRemoveEvent_S4(object sender, DotRemoveCommandEventArgs e){DotRemoveCommandEventArgs ee = new DotRemoveCommandEventArgs(e.Image, null, e.BoundingRectangle, e.WhiteCount, e.BlackCount);// Do not remove the speck if it contains any white pixelsif (e.WhiteCount > 0){e.Status = RemoveStatus.NoRemove;}else{e.Status = RemoveStatus.Remove;}}
Imports LeadtoolsImports Leadtools.CodecsImports Leadtools.ImageProcessing.CorePublic Sub DotRemoveCommandEventArgsExample(ByVal image As RasterImage, ByVal outStream As Stream)' Prepare the commandDim command As DotRemoveCommand = New DotRemoveCommand(DotRemoveCommandFlags.UseSize Or DotRemoveCommandFlags.CallBackRegion, 1, 1, 10, 10)AddHandler command.DotRemove, AddressOf DotRemoveEvent_S4command.Run(image)' Save result imageDim codecs As RasterCodecs = New RasterCodecs()codecs.Save(image, outStream, RasterImageFormat.CcittGroup4, 1)image.Dispose()End SubPrivate Sub DotRemoveEvent_S4(ByVal sender As Object, ByVal e As DotRemoveCommandEventArgs)Dim ee As DotRemoveCommandEventArgs = New DotRemoveCommandEventArgs(e.Image, Nothing, e.BoundingRectangle, e.WhiteCount, e.BlackCount)' Do not remove the speck if it contains any white pixelsIf e.WhiteCount > 0 Thene.Status = RemoveStatus.NoRemoveElsee.Status = RemoveStatus.RemoveEnd IfEnd Sub
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
