diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2024-11-13 05:12:21 +0200 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2024-11-13 05:12:21 +0200 |
| commit | 331266b13685e16520ae5baa8a7aff50789c31df (patch) | |
| tree | e41c95c155aecccd43cac6498e4bd70a3e227f5a /Software/Visual_Studio/Tango.BL/Enumerations | |
| parent | 46978af63f2f683eefb0cadb87c1ce7540b0038d (diff) | |
| download | Tango-331266b13685e16520ae5baa8a7aff50789c31df.tar.gz Tango-331266b13685e16520ae5baa8a7aff50789c31df.zip | |
Inks Extension Support.
Diffstat (limited to 'Software/Visual_Studio/Tango.BL/Enumerations')
| -rw-r--r-- | Software/Visual_Studio/Tango.BL/Enumerations/CMYKVPredictionMethods.cs | 21 | ||||
| -rw-r--r-- | Software/Visual_Studio/Tango.BL/Enumerations/CMYKVPredictionTypes.cs | 23 |
2 files changed, 44 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.BL/Enumerations/CMYKVPredictionMethods.cs b/Software/Visual_Studio/Tango.BL/Enumerations/CMYKVPredictionMethods.cs new file mode 100644 index 000000000..0b97b34bf --- /dev/null +++ b/Software/Visual_Studio/Tango.BL/Enumerations/CMYKVPredictionMethods.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.BL.Enumerations +{ + public enum CMYKVPredictionMethods + { + [Description("K-Nearest Neighbors (KNN)")] + KNearestNeighbors = 0, + [Description("Linear Interpolation")] + LinearInterpolation = 1, + [Description("Linear Regression")] + LinearRegression = 2, + [Description("Spline Interpolation")] + SplineInterpolation = 3 + } +} diff --git a/Software/Visual_Studio/Tango.BL/Enumerations/CMYKVPredictionTypes.cs b/Software/Visual_Studio/Tango.BL/Enumerations/CMYKVPredictionTypes.cs new file mode 100644 index 000000000..7d83e1f63 --- /dev/null +++ b/Software/Visual_Studio/Tango.BL/Enumerations/CMYKVPredictionTypes.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.BL.Enumerations +{ + public enum CMYKVPredictionTypes + { + [Description("None")] + None = 0, + [Description("Predict CMYKV")] + Predict_CMYKV = 1, + [Description("Predict RGB")] + Predict_RGB = 2, + [Description("Predict All")] + PredictAll = 3, + [Description("Simple RGB Preview")] + SimpleRGBPreview = 4, + } +} |
