public DotRemoveCommand(
DotRemoveCommandFlags flags,
int minimumDotWidth,
int minimumDotHeight,
int maximumDotWidth,
int maximumDotHeight
)
- (instancetype)initWithFlags:(LTDotRemoveCommandFlags)flags minimumDotWidth:(NSInteger)minimumDotWidth minimumDotHeight:(NSInteger)minimumDotHeight maximumDotWidth:(NSInteger)maximumDotWidth maximumDotHeight:(NSInteger)maximumDotHeight NS_DESIGNATED_INITIALIZER;
public DotRemoveCommand(
int flags,
int minimumDotWidth,
int minimumDotHeight,
int maximumDotWidth,
int maximumDotHeight
)
public:
DotRemoveCommand(
DotRemoveCommandFlags flags,
int minimumDotWidth,
int minimumDotHeight,
int maximumDotWidth,
int maximumDotHeight
)
__init__(self,flags,minimumDotWidth,minimumDotHeight,maximumDotWidth,maximumDotHeight) # Overloaded constructor
flags
Flag that determines the behavior of the dot removal process.
minimumDotWidth
The minimum width of a dot to be removed. If the DotRemoveCommandFlags.UseDpi flag is set, units are in thousandths of an inch, otherwise units are in pixels.
minimumDotHeight
The minimum height of a dot to be removed. If the DotRemoveCommandFlags.UseDpi flag is set, units are in thousandths of an inch, otherwise units are in pixels.
maximumDotWidth
The maximum width of a dot to be removed. If the DotRemoveCommandFlags.UseDpi flag is set, units are in thousandths of an inch, otherwise units are in pixels.
maximumDotHeight
The maximum height of a dot to be removed. If the DotRemoveCommandFlags.UseDpi flag is set, units are in thousandths of an inch, otherwise units are in pixels.
Run the DotRemoveCommand on an image.
using Leadtools;
using Leadtools.Codecs;
using Leadtools.ImageProcessing.Core;
public void DotRemoveConstructorExample()
{
// Load an image
RasterCodecs codecs = new RasterCodecs();
codecs.ThrowExceptionsOnInvalidImages = true;
RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "Clean.tif"));
// Prepare the command
DotRemoveCommand command = new DotRemoveCommand(DotRemoveCommandFlags.UseSize | DotRemoveCommandFlags.SingleRegion, 1, 1, 10, 10);
command.DotRemove += new EventHandler<DotRemoveCommandEventArgs>(DotRemoveEvent_S2);
command.Run(image);
}
private void DotRemoveEvent_S2(object sender, DotRemoveCommandEventArgs e)
{
// Do not remove the speck if it contains any white pixels
if (e.WhiteCount > 0)
{
e.Status = RemoveStatus.NoRemove;
}
else
{
e.Status = RemoveStatus.Remove;
}
}
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