Action913.cs 626 B

1234567891011121314151617181920212223242526
  1. using PaintDotNet.Adjust;
  2. using PaintDotNet.Base;
  3. using PaintDotNet.Data.Param;
  4. using System.Collections.Generic;
  5. namespace PaintDotNet.Data.Action
  6. {
  7. /// <summary>
  8. /// 孔洞填充
  9. /// </summary>
  10. public class Action913 : ParamObject
  11. {
  12. public override OpenCvSharp.Mat PerformProcess(OpenCvSharp.Mat src)
  13. {
  14. return null;
  15. }
  16. public Action913()
  17. {
  18. this.MenuId = ActionType.ActionHoleFilling;
  19. this.OpenImage = "currentPhase";
  20. //this.OpenImage = "";//###
  21. ////this.OpenImage = "currentPhase";
  22. }
  23. }
  24. }