public SmoothCommand(
SmoothCommandFlags flags,
int length
)
- (instancetype)initWithFlags:(LTSmoothCommandFlags)flags length:(NSInteger)length NS_DESIGNATED_INITIALIZER;
public:
SmoothCommand(
SmoothCommandFlags flags,
int length
)
flags
Flags that determine the behavior of the smoothing process.
length
Length of the bump (or nick) to remove (or fill). All bumps and nicks less than or equal to this size are processed. This value is in pixels.
Run the SmoothCommand on an image.
using Leadtools;
using Leadtools.Codecs;
using Leadtools.ImageProcessing.Core;
public void SmoothConstructorExample()
{
// Load an image
RasterCodecs codecs = new RasterCodecs();
codecs.ThrowExceptionsOnInvalidImages = true;
RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "clean.tif"));
// Prepare the command
SmoothCommand command = new SmoothCommand(SmoothCommandFlags.FavorLong | SmoothCommandFlags.SingleRegion, 2);
command.Smooth += new EventHandler<SmoothCommandEventArgs>(SmoothEventExample_S2);
command.Run(image);
}
private void SmoothEventExample_S2(object sender, SmoothCommandEventArgs e)
{
string BumpOrNeck;
if (e.BumpNick == SmoothCommandBumpNickType.Bump)
BumpOrNeck = "Bump";
else
BumpOrNeck = "Neck";
string Direction;
if (e.Direction == SmoothCommandDirectionType.Horizontal)
Direction = "Horizontal";
else
Direction = "Vertical";
System.Diagnostics.Debug.WriteLine("Type " + BumpOrNeck +
"\n Row Column " + e.StartRow.ToString() + e.StartColumn.ToString() +
"\n Length " + e.Length +
"\n Direction " + Direction +
"\n Bump Or Neck " + BumpOrNeck);
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.assertTrue;
import leadtools.*;
import leadtools.codecs.*;
import leadtools.imageprocessing.core.*;
public void smoothConstructorExample() {
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"), 1, CodecsLoadByteOrder.BGR, 1, 1);
// Prepare the command
SmoothCommand command = new SmoothCommand(
SmoothCommandFlags.FAVOR_LONG.getValue() | SmoothCommandFlags.SINGLE_REGION.getValue(), 2);
command.addSmoothCommandListener(smoothEventExample_S2);
int change = command.run(image);
assertTrue(change != RasterImageChangedFlags.NONE);
codecs.save(image, combine(LEAD_VARS_IMAGES_DIR, "clean.tif"), RasterImageFormat.JPEG, 24);
System.out.println("Command run and image saved to " + combine(LEAD_VARS_IMAGES_DIR, "clean.tif"));
}
SmoothCommandListener smoothEventExample_S2 = new SmoothCommandListener() {
@Override
public void onSmoothEvent(SmoothCommandEvent e) {
String BumpOrNeck;
if (e.getBumpNick() == SmoothCommandBumpNickType.BUMP)
BumpOrNeck = "Bump";
else
BumpOrNeck = "Neck";
String Direction;
if (e.getDirection() == SmoothCommandDirectionType.HORIZONTAL)
Direction = "Horizontal";
else
Direction = "Vertical";
System.out.println("Type " + BumpOrNeck +
"\n Row Column " + e.getStartRow() + e.getStartColumn() +
"\n Length " + e.getLength() +
"\n Direction " + Direction +
"\n Bump Or Neck " + BumpOrNeck);
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