public ContourFilterCommand(int threshold,int deltaDirection,int maximumError,ContourFilterCommandType type)
Public Function New( _ByVal threshold As Integer, _ByVal deltaDirection As Integer, _ByVal maximumError As Integer, _ByVal type As ContourFilterCommandType _)
public:ContourFilterCommand(int threshold,int deltaDirection,int maximumError,ContourFilterCommandType type)
threshold
Threshold of the gradient magnitude. Values below this will be considered as background, and will be set to 0. Values can be from 1 to 254. A lower threshold provides a better quality image. Default is 15.
deltaDirection
Maximum angle for the thinning algorithm. Values can be from 1 to 64. Default is 35.
maximumError
Maximum error for approximation algorithm. Values can be from 0 to 255. Default is 5. This parameter is only valid if the type parameter is set to ApproxColor.
type
Flag that controls the resulting image. This value tells the command what process to complete before returning.
Run the ContourFilterCommand on an image with LinkColor Option.
using Leadtools;using Leadtools.Codecs;using Leadtools.ImageProcessing.Effects;public void ContourFilterConstructorExample(){// Load an imageRasterCodecs codecs = new RasterCodecs();codecs.ThrowExceptionsOnInvalidImages = true;RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, @"ImageProcessingDemo\Beauty16.jpg"), 16, CodecsLoadByteOrder.BgrOrGray, 1, 1);// Prepare the commandContourFilterCommand command = new ContourFilterCommand(15, 35, 5, ContourFilterCommandType.LinkColor);command.Run(image);codecs.Save(image, Path.Combine(LEAD_VARS.ImagesDir, "Result.jpg"), RasterImageFormat.Jpeg, 24);}static class LEAD_VARS{public const string ImagesDir = @"C:\LEADTOOLS21\Resources\Images";}
Imports LeadtoolsImports Leadtools.CodecsImports Leadtools.ImageProcessing.EffectsPublic Sub ContourFilterConstructorExample()Dim codecs As New RasterCodecs()codecs.ThrowExceptionsOnInvalidImages = TrueDim leadImage As RasterImage = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "Master.jpg"))' Prepare the commandDim command As ContourFilterCommandcommand = New ContourFilterCommand(15, 35, 5, ContourFilterCommandType.LinkColor)command.Run(leadImage)codecs.Save(leadImage, Path.Combine(LEAD_VARS.ImagesDir, "Result.jpg"), RasterImageFormat.Jpeg, 24)End SubPublic NotInheritable Class LEAD_VARSPublic Const ImagesDir As String = "C:\LEADTOOLS21\Resources\Images"End Class
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
