Dtryt.cs 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace PaintDotNet.Data.Param
  6. {
  7. public enum ActionType
  8. {
  9. /// 500 图像处理
  10. /// <summary>
  11. /// 锐化
  12. /// </summary>
  13. ActionSharpening = 502,
  14. /// <summary>
  15. /// 图像平滑
  16. /// </summary>
  17. ActionSmoothing = 503,
  18. /// <summary>
  19. /// 边缘检测
  20. /// </summary>
  21. ActionEdgeDetection = 504,
  22. /// <summary>
  23. /// 图像间操作
  24. /// </summary>
  25. ActionInterOperation = 505,
  26. /// <summary>
  27. /// 图像偏移
  28. /// </summary>
  29. ActionImageOffset = 507,
  30. /// <summary>
  31. /// 图像拼接
  32. /// </summary>
  33. ActionImageStitching = 508,
  34. /// <summary>
  35. /// 景深扩展
  36. /// </summary>
  37. ActionExtendedDepthOfFocus = 509,
  38. /// 501 调节
  39. /// <summary>
  40. /// 反色
  41. /// </summary>
  42. ActionRevertColor = 5010,
  43. /// <summary>
  44. /// 灰度化
  45. /// </summary>
  46. ActionBgr2Gray = 5011,
  47. /// <summary>
  48. /// 白平衡
  49. /// </summary>
  50. ActionWhiteBalance = 5012,
  51. /// <summary>
  52. /// 色彩平衡
  53. /// </summary>
  54. ActionColorBalance = 5013,
  55. /// <summary>
  56. /// 阴影校正
  57. /// </summary>
  58. ActionShadingCorrection = 5014,
  59. /// <summary>
  60. /// 色度/饱和度/亮度
  61. /// </summary>
  62. ActionHSB = 5015,
  63. /// <summary>
  64. /// 亮度/对比度/伽马值
  65. /// </summary>
  66. ActionBCG = 5016
  67. }
  68. public enum Dtryt
  69. {
  70. /// <summary>
  71. /// 字典类
  72. /// </summary>
  73. Array,
  74. /// <summary>
  75. /// 正整数范围
  76. /// </summary>
  77. Interger,
  78. /// <summary>
  79. /// 小数范围
  80. /// </summary>
  81. Decimal,
  82. /// <summary>
  83. /// 奇数范围
  84. /// </summary>
  85. Odd,
  86. /// <summary>
  87. /// 输入图像
  88. /// </summary>
  89. Input,
  90. /// <summary>
  91. /// 输出图像
  92. /// </summary>
  93. Output,
  94. /// <summary>
  95. /// 抉择
  96. /// </summary>
  97. Choise
  98. }
  99. }