public RasterImage Image { get; } public RasterImage getImage() public:property RasterImage^ Image {RasterImage^ get();}
Image # get (DotRemoveCommandEventArgs)
RasterImage object that references the image to be modified.
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:\LEADTOOLS22\Resources\Images";}
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
