using PaintDotNet.Base; using PaintDotNet.Data.Param; using System.Collections.Generic; namespace PaintDotNet.Data.Action { /// /// 阴影校正 /// public class Action5014 : ParamObject { public override OpenCvSharp.Mat PerformProcess(OpenCvSharp.Mat src) { return Adjust.AdjustIntent.ShadingCorrection(src); } public Action5014() { this.MenuId = ActionType.ActionShadingCorrection; this.OpenImage = "current"; } } }