123456789101112131415161718192021 |
- using PaintDotNet.Data.Param;
- namespace PaintDotNet.Data.Action
- {
- /// <summary>
- /// Prewitt
- /// </summary>
- public class Action5044 : ParamObject
- {
- public override OpenCvSharp.Mat PerformProcess(OpenCvSharp.Mat src)
- {
- return Adjust.EdgeDetectionIntent.ImagePrewitt(src);
- }
- public Action5044()
- {
- this.MenuId = ActionType.Prewitt;
- this.OpenImage = "current";
- }
- }
- }
|