| 274 | } |
| 275 | |
| 276 | constexpr const char* GetNormalizationAlgorithmMethodAsCString(NormalizationAlgorithmMethod method) |
| 277 | { |
| 278 | switch (method) |
| 279 | { |
| 280 | case NormalizationAlgorithmMethod::LocalBrightness: return "LocalBrightness"; |
| 281 | case NormalizationAlgorithmMethod::LocalContrast: return "LocalContrast"; |
| 282 | default: return "Unknown"; |
| 283 | } |
| 284 | } |
| 285 | |
| 286 | constexpr const char* GetResizeMethodAsCString(ResizeMethod method) |
| 287 | { |