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