1234567891011121314151617181920212223242526 |
- using PaintDotNet.Adjust;
- using PaintDotNet.Base;
- using PaintDotNet.Data.Param;
- using System.Collections.Generic;
- namespace PaintDotNet.Data.Action
- {
- /// <summary>
- /// 孔洞填充
- /// </summary>
- public class Action913 : ParamObject
- {
- public override OpenCvSharp.Mat PerformProcess(OpenCvSharp.Mat src)
- {
- return null;
- }
- public Action913()
- {
- this.MenuId = ActionType.ActionHoleFilling;
- this.OpenImage = "currentPhase";
- //this.OpenImage = "";//###
- ////this.OpenImage = "currentPhase";
- }
- }
- }
|