Click or drag to resize

ImreadModes Enumeration

http://www.emgu.com
cvLoadImage type

Namespace:  Emgu.CV.CvEnum
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntax
[FlagsAttribute]
public enum ImreadModes
Members
  Member nameValueDescription
Unchanged-1 If set, return the loaded image as is (with alpha channel, otherwise it gets cropped).
Grayscale0 If set, always convert image to the single channel grayscale image.
Color1 If set, always convert image to the 3 channel BGR color image.
AnyDepth2 If set, return 16-bit/32-bit image when the input has the corresponding depth, otherwise convert it to 8-bit.
AnyColor4 If set, the image is read in any possible color format.
LoadGdal8 If set, use the gdal driver for loading the image.
ReducedGrayscale216 If set, always convert image to the single channel grayscale image and the image size reduced 1/2.
ReducedColor217 If set, always convert image to the 3 channel BGR color image and the image size reduced 1/2.
ReducedGrayscale432 If set, always convert image to the single channel grayscale image and the image size reduced 1/4.
ReducedColor433 If set, always convert image to the 3 channel BGR color image and the image size reduced 1/4.
ReducedGrayscale864 If set, always convert image to the single channel grayscale image and the image size reduced 1/8.
ReducedColor865 If set, always convert image to the 3 channel BGR color image and the image size reduced 1/8.
See Also