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