using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace PaintDotNet.Data.Param { public enum ActionType { /// 500 图像处理 /// /// 锐化 /// ActionSharpening = 502, /// /// 图像平滑 /// ActionSmoothing = 503, /// /// 边缘检测 /// ActionEdgeDetection = 504, /// /// 图像间操作 /// ActionInterOperation = 505, /// /// 图像偏移 /// ActionImageOffset = 507, /// /// 图像拼接 /// ActionImageStitching = 508, /// /// 景深扩展 /// ActionExtendedDepthOfFocus = 509, /// 501 调节 /// /// 反色 /// ActionRevertColor = 5010, /// /// 灰度化 /// ActionBgr2Gray = 5011, /// /// 白平衡 /// ActionWhiteBalance = 5012, /// /// 色彩平衡 /// ActionColorBalance = 5013, /// /// 阴影校正 /// ActionShadingCorrection = 5014, /// /// 色度/饱和度/亮度 /// ActionHSB = 5015, /// /// 亮度/对比度/伽马值 /// ActionBCG = 5016 } public enum Dtryt { /// /// 字典类 /// Array, /// /// 正整数范围 /// Interger, /// /// 小数范围 /// Decimal, /// /// 奇数范围 /// Odd, /// /// 输入图像 /// Input, /// /// 输出图像 /// Output, /// /// 抉择 /// Choise } }