using PaintDotNet.Base; using PaintDotNet.Data.Param; using System.Collections.Generic; namespace PaintDotNet.Data.Action { /// /// 反色 /// public class Action5010 : ParamObject { public override OpenCvSharp.Mat PerformProcess(OpenCvSharp.Mat src) { return Adjust.AdjustIntent.ReverseColorFunction(src); } public Action5010() { this.MenuId = ActionType.ActionRevertColor; this.OpenImage = "current"; } } }