Action5014.cs 552 B

1234567891011121314151617181920212223
  1. using PaintDotNet.Base;
  2. using PaintDotNet.Data.Param;
  3. using System.Collections.Generic;
  4. namespace PaintDotNet.Data.Action
  5. {
  6. /// <summary>
  7. /// 阴影校正
  8. /// </summary>
  9. public class Action5014 : ParamObject
  10. {
  11. public override OpenCvSharp.Mat PerformProcess(OpenCvSharp.Mat src)
  12. {
  13. return Adjust.AdjustIntent.ShadingCorrection(src);
  14. }
  15. public Action5014()
  16. {
  17. this.MenuId = ActionType.ActionShadingCorrection;
  18. this.OpenImage = "current";
  19. }
  20. }
  21. }