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:\LEADTOOLS23\Resources\Images";
}
import java.io.File;
import java.io.IOException;
import org.junit.*;
import org.junit.runner.JUnitCore;
import org.junit.runner.Result;
import org.junit.runner.notification.Failure;
import static org.junit.Assert.*;
import leadtools.*;
import leadtools.codecs.*;
import leadtools.imageprocessing.core.*;
public void dotRemoveConstructorExample() {
final String LEAD_VARS_IMAGES_DIR = "C:\\LEADTOOLS23\\Resources\\Images";
// Load an image
RasterCodecs codecs = new RasterCodecs();
codecs.setThrowExceptionsOnInvalidImages(true);
RasterImage image = codecs.load(combine(LEAD_VARS_IMAGES_DIR, "Clean.tif"));
String outputFileName = combine(LEAD_VARS_IMAGES_DIR, "LEAD_dotRemoveExample.jpg");
// Prepare the command
DotRemoveCommand command = new DotRemoveCommand(
DotRemoveCommandFlags.USE_SIZE.getValue() | DotRemoveCommandFlags.SINGLE_REGION.getValue(), 1, 1, 10, 10);
assertTrue(command.getMaximumDotHeight() == 10 && command.getMaximumDotWidth() == 10
&& command.getMinimumDotHeight() == 1 && command.getMinimumDotWidth() == 1);
command.addDotRemoveCommandListener(dotRemoveEventS2);
command.run(image);
System.out.println("Executed changes on loaded image...");
codecs.save(image, outputFileName, RasterImageFormat.JPEG, 8);
System.out.println("Saved updated file to:\n" + outputFileName);
assertTrue(new File(outputFileName).exists());
}
DotRemoveCommandListener dotRemoveEventS2 = new DotRemoveCommandListener() {
@Override
public void onDotRemoveEvent(DotRemoveCommandEvent e) {
// Do not remove the speck if it contains any white pixels
if (e.getWhiteCount() > 0) {
e.setStatus(RemoveStatus.NO_REMOVE);
} else {
e.setStatus(RemoveStatus.REMOVE);
}
}
};
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