1234567891011121314151617181920212223 |
- using PaintDotNet.Base;
- using PaintDotNet.Data.Param;
- using System.Collections.Generic;
- namespace PaintDotNet.Data.Action
- {
- /// <summary>
- /// 反色
- /// </summary>
- 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";
- }
- }
- }
|