AdaptiveContrastCommandType Enumeration (original) (raw)
Summary
Enumeration flags that identify the adjustment method.
Syntax
C#
Objective-C
C++/CLI
Java
Python
public enum AdaptiveContrastCommandType
typedef NS_ENUM(NSInteger, LTAdaptiveContrastCommandType) {
LTAdaptiveContrastCommandTypeExponential = 0x0001,
LTAdaptiveContrastCommandTypeLinear = 0x0002
};
public final class AdaptiveContrastCommandType
extends java.lang.Enum<AdaptiveContrastCommandType>
public enum class AdaptiveContrastCommandType
class AdaptiveContrastCommandType(Enum):
Exponential = 1
Linear = 2
Members
Value | Member | Description |
---|---|---|
1 | Exponential | Apply exponential adjustment. |
2 | Linear | Apply linear adjustment. |