using PaintDotNet.Data.Param; namespace PaintDotNet.Data.Action { /// /// 图像间操作-平方根 /// public class Action5056 : ParamObject { public override OpenCvSharp.Mat PerformProcess(OpenCvSharp.Mat src) { return Adjust.InterImageIntent.ImageSquareBoot(src); } public Action5056() { this.MenuId = ActionType.ActionImageSquareBoot; this.OpenImage = "current"; } } }