123456789101112131415161718192021 |
- using PaintDotNet.Data.Param;
- namespace PaintDotNet.Data.Action
- {
- /// <summary>
- /// 图像间操作-平方
- /// </summary>
- public class Action5055 : ParamObject
- {
- public override OpenCvSharp.Mat PerformProcess(OpenCvSharp.Mat src)
- {
- return Adjust.InterImageIntent.ImageSquare(src);
- }
- public Action5055()
- {
- this.MenuId = ActionType.ActionImageSquare;
- this.OpenImage = "current";
- }
- }
- }
|