using PaintDotNet.Adjust; using PaintDotNet.Base; using PaintDotNet.Data.Param; using System.Collections.Generic; namespace PaintDotNet.Data.Action { /// /// 孔洞填充 /// 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"; } } }