using PaintDotNet.Data.Param; namespace PaintDotNet.Data.Action { /// /// Sobel /// public class Action5042 : ParamObject { public override OpenCvSharp.Mat PerformProcess(OpenCvSharp.Mat src) { return Adjust.EdgeDetectionIntent.ImageSobel(src); } public Action5042() { this.MenuId = ActionType.Sobel; this.OpenImage = "current"; } } }