For more information, refer to Detecting and Enhancing Edges and Lines.
Edge Detect Statistical Function - Before

Edge Detect Statistical Function - After

View additional platform support for this Edge Detect Statistical function.
Run the EdgeDetectStatisticalCommand on an image.
using Leadtools;using Leadtools.Codecs;using Leadtools.ImageProcessing.Effects;public void EdgeDetectStatisticalCommandExample(){// Load an imageRasterCodecs codecs = new RasterCodecs();codecs.ThrowExceptionsOnInvalidImages = true;RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "ImageProcessingDemo\\NaturalFruits.jpg"));// Prepare the commandEdgeDetectStatisticalCommand command = new EdgeDetectStatisticalCommand();command.Dimension = 15;command.Threshold = 128;command.EdgeColor = new RasterColor(255, 255, 255);command.BackGroundColor = new RasterColor(0, 0, 0);// Apply an edge detector statistical command.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:\LEADTOOLS22\Resources\Images";}
EdgeDetectStatisticalCommand Members
Leadtools.ImageProcessing.Effects Namespace
Detecting and Enhancing Edges and Lines
Leadtools.ImageProcessing.Color.IntensityDetectCommand
Leadtools.ImageProcessing.Color.AutoColorLevelCommand
Leadtools.ImageProcessing.Color.ColorLevelCommand
Leadtools.ImageProcessing.Color.GrayScaleToDuotoneCommand
Leadtools.ImageProcessing.Color.GrayScaleToMultitoneCommand
RegionHolesRemovalCommand Class
Leadtools.ImageProcessing.Color.SelectiveColorCommand
Leadtools.ImageProcessing.SpecialEffects.BricksTextureCommand
Leadtools.ImageProcessing.Core.DeskewCommand
Leadtools.ImageProcessing.SpecialEffects.DiffuseGlowCommand
Leadtools.ImageProcessing.SpecialEffects.GlowCommand
Leadtools.ImageProcessing.Core.HalfTonePatternCommand
Leadtools.ImageProcessing.SpecialEffects.PerspectiveCommand