Enum LoadImageFlags
Specifies the color type of a loaded image.
Namespace: OpenCV.Net
Assembly: OpenCV.Net.dll
Syntax
public enum LoadImageFlags : int
Fields
Name | Description |
---|---|
AnyColor | Specifies that the image can be color or not. Unless AnyDepth is specified, the image will be converted to 8-bit. |
AnyDepth | Specifies that the image can be either 16-bit or 32-bit when the input has the corresponding depth. Otherwise, convert it to 8-bit. |
Color | Specifies that the image is 8-bit color. |
Grayscale | Specifies that the image is 8-bit grayscale. |
Unchanged | Specifies that the image is 8-bit, color or not. Overrides all other flags. |