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