123456789101112131415161718192021 |
- using PaintDotNet.Data.Param;
- namespace PaintDotNet.Data.Action
- {
- /// <summary>
- /// Sobel
- /// </summary>
- 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";
- }
- }
- }
|