OpenCV for Unity 3.0.0
Enox Software / Please refer to OpenCV official document ( http://docs.opencv.org/4.12.0/index.html ) for the details of the argument of the method.
|
Static Public Member Functions | |
static bool | haveImageReader (string filename) |
Checks if the specified image file can be decoded by OpenCV. | |
static bool | haveImageWriter (string filename) |
Checks if the specified image file or specified file extension can be encoded by OpenCV. | |
static long | imcount (string filename) |
Returns the number of images inside the given file. | |
static long | imcount (string filename, int flags) |
Returns the number of images inside the given file. | |
static Mat | imdecode (Mat buf, int flags) |
Reads an image from a buffer in memory. | |
static bool | imdecodeanimation (Mat buf, Animation animation) |
Loads frames from an animated image buffer into an Animation structure. | |
static bool | imdecodeanimation (Mat buf, Animation animation, int start) |
Loads frames from an animated image buffer into an Animation structure. | |
static bool | imdecodeanimation (Mat buf, Animation animation, int start, int count) |
Loads frames from an animated image buffer into an Animation structure. | |
static bool | imdecodemulti (Mat buf, int flags, List< Mat > mats) |
Reads a multi-page image from a buffer in memory. | |
static bool | imdecodemulti (Mat buf, int flags, List< Mat > mats, Range range) |
Reads a multi-page image from a buffer in memory. | |
static Mat | imdecodeWithMetadata (Mat buf, MatOfInt metadataTypes, List< Mat > metadata) |
Reads an image from a buffer in memory together with associated metadata. | |
static Mat | imdecodeWithMetadata (Mat buf, MatOfInt metadataTypes, List< Mat > metadata, int flags) |
Reads an image from a buffer in memory together with associated metadata. | |
static bool | imencode (string ext, Mat img, MatOfByte buf) |
Encodes an image into a memory buffer. | |
static bool | imencode (string ext, Mat img, MatOfByte buf, MatOfInt _params) |
Encodes an image into a memory buffer. | |
static bool | imencodeanimation (string ext, Animation animation, MatOfByte buf) |
Encodes an Animation to a memory buffer. | |
static bool | imencodeanimation (string ext, Animation animation, MatOfByte buf, MatOfInt _params) |
Encodes an Animation to a memory buffer. | |
static bool | imencodemulti (string ext, List< Mat > imgs, MatOfByte buf) |
Encodes array of images into a memory buffer. | |
static bool | imencodemulti (string ext, List< Mat > imgs, MatOfByte buf, MatOfInt _params) |
Encodes array of images into a memory buffer. | |
static bool | imencodeWithMetadata (string ext, Mat img, MatOfInt metadataTypes, List< Mat > metadata, MatOfByte buf) |
Encodes an image into a memory buffer. | |
static bool | imencodeWithMetadata (string ext, Mat img, MatOfInt metadataTypes, List< Mat > metadata, MatOfByte buf, MatOfInt _params) |
Encodes an image into a memory buffer. | |
static Mat | imread (string filename) |
Loads an image from a file. | |
static Mat | imread (string filename, int flags) |
Loads an image from a file. | |
static void | imread (string filename, Mat dst) |
Loads an image from a file. | |
static void | imread (string filename, Mat dst, int flags) |
Loads an image from a file. | |
static bool | imreadanimation (string filename, Animation animation) |
Loads frames from an animated image file into an Animation structure. | |
static bool | imreadanimation (string filename, Animation animation, int start) |
Loads frames from an animated image file into an Animation structure. | |
static bool | imreadanimation (string filename, Animation animation, int start, int count) |
Loads frames from an animated image file into an Animation structure. | |
static bool | imreadmulti (string filename, List< Mat > mats) |
Loads a multi-page image from a file. | |
static bool | imreadmulti (string filename, List< Mat > mats, int flags) |
Loads a multi-page image from a file. | |
static bool | imreadmulti (string filename, List< Mat > mats, int start, int count) |
Loads images of a multi-page image from a file. | |
static bool | imreadmulti (string filename, List< Mat > mats, int start, int count, int flags) |
Loads images of a multi-page image from a file. | |
static Mat | imreadWithMetadata (string filename, MatOfInt metadataTypes, List< Mat > metadata) |
Reads an image from a file together with associated metadata. | |
static Mat | imreadWithMetadata (string filename, MatOfInt metadataTypes, List< Mat > metadata, int flags) |
Reads an image from a file together with associated metadata. | |
static bool | imwrite (string filename, Mat img) |
Saves an image to a specified file. | |
static bool | imwrite (string filename, Mat img, MatOfInt _params) |
Saves an image to a specified file. | |
static bool | imwriteanimation (string filename, Animation animation) |
Saves an Animation to a specified file. | |
static bool | imwriteanimation (string filename, Animation animation, MatOfInt _params) |
Saves an Animation to a specified file. | |
static bool | imwritemulti (string filename, List< Mat > img) |
static bool | imwritemulti (string filename, List< Mat > img, MatOfInt _params) |
static bool | imwriteWithMetadata (string filename, Mat img, MatOfInt metadataTypes, List< Mat > metadata) |
Saves an image to a specified file with metadata. | |
static bool | imwriteWithMetadata (string filename, Mat img, MatOfInt metadataTypes, List< Mat > metadata, MatOfInt _params) |
Saves an image to a specified file with metadata. | |
Static Public Attributes | |
const int | IMAGE_METADATA_EXIF = 0 |
C++: enum ImageMetadataType (cv.ImageMetadataType) | |
const int | IMAGE_METADATA_ICCP = 2 |
C++: enum ImageMetadataType (cv.ImageMetadataType) | |
const int | IMAGE_METADATA_MAX = 2 |
C++: enum ImageMetadataType (cv.ImageMetadataType) | |
const int | IMAGE_METADATA_UNKNOWN = -1 |
C++: enum ImageMetadataType (cv.ImageMetadataType) | |
const int | IMAGE_METADATA_XMP = 1 |
C++: enum ImageMetadataType (cv.ImageMetadataType) | |
const int | IMREAD_ANYCOLOR = 4 |
C++: enum ImreadModes (cv.ImreadModes) | |
const int | IMREAD_ANYDEPTH = 2 |
C++: enum ImreadModes (cv.ImreadModes) | |
const int | IMREAD_COLOR = 1 |
C++: enum ImreadModes (cv.ImreadModes) | |
const int | IMREAD_COLOR_BGR = 1 |
C++: enum ImreadModes (cv.ImreadModes) | |
const int | IMREAD_COLOR_RGB = 256 |
C++: enum ImreadModes (cv.ImreadModes) | |
const int | IMREAD_GRAYSCALE = 0 |
C++: enum ImreadModes (cv.ImreadModes) | |
const int | IMREAD_IGNORE_ORIENTATION = 128 |
C++: enum ImreadModes (cv.ImreadModes) | |
const int | IMREAD_LOAD_GDAL = 8 |
C++: enum ImreadModes (cv.ImreadModes) | |
const int | IMREAD_REDUCED_COLOR_2 = 17 |
C++: enum ImreadModes (cv.ImreadModes) | |
const int | IMREAD_REDUCED_COLOR_4 = 33 |
C++: enum ImreadModes (cv.ImreadModes) | |
const int | IMREAD_REDUCED_COLOR_8 = 65 |
C++: enum ImreadModes (cv.ImreadModes) | |
const int | IMREAD_REDUCED_GRAYSCALE_2 = 16 |
C++: enum ImreadModes (cv.ImreadModes) | |
const int | IMREAD_REDUCED_GRAYSCALE_4 = 32 |
C++: enum ImreadModes (cv.ImreadModes) | |
const int | IMREAD_REDUCED_GRAYSCALE_8 = 64 |
C++: enum ImreadModes (cv.ImreadModes) | |
const int | IMREAD_UNCHANGED = -1 |
C++: enum ImreadModes (cv.ImreadModes) | |
const int | IMWRITE_AVIF_DEPTH = 513 |
C++: enum ImwriteFlags (cv.ImwriteFlags) | |
const int | IMWRITE_AVIF_QUALITY = 512 |
C++: enum ImwriteFlags (cv.ImwriteFlags) | |
const int | IMWRITE_AVIF_SPEED = 514 |
C++: enum ImwriteFlags (cv.ImwriteFlags) | |
const int | IMWRITE_EXR_COMPRESSION = (3 << 4) + 1 |
C++: enum ImwriteFlags (cv.ImwriteFlags) | |
const int | IMWRITE_EXR_COMPRESSION_B44 = 6 |
C++: enum ImwriteEXRCompressionFlags (cv.ImwriteEXRCompressionFlags) | |
const int | IMWRITE_EXR_COMPRESSION_B44A = 7 |
C++: enum ImwriteEXRCompressionFlags (cv.ImwriteEXRCompressionFlags) | |
const int | IMWRITE_EXR_COMPRESSION_DWAA = 8 |
C++: enum ImwriteEXRCompressionFlags (cv.ImwriteEXRCompressionFlags) | |
const int | IMWRITE_EXR_COMPRESSION_DWAB = 9 |
C++: enum ImwriteEXRCompressionFlags (cv.ImwriteEXRCompressionFlags) | |
const int | IMWRITE_EXR_COMPRESSION_NO = 0 |
C++: enum ImwriteEXRCompressionFlags (cv.ImwriteEXRCompressionFlags) | |
const int | IMWRITE_EXR_COMPRESSION_PIZ = 4 |
C++: enum ImwriteEXRCompressionFlags (cv.ImwriteEXRCompressionFlags) | |
const int | IMWRITE_EXR_COMPRESSION_PXR24 = 5 |
C++: enum ImwriteEXRCompressionFlags (cv.ImwriteEXRCompressionFlags) | |
const int | IMWRITE_EXR_COMPRESSION_RLE = 1 |
C++: enum ImwriteEXRCompressionFlags (cv.ImwriteEXRCompressionFlags) | |
const int | IMWRITE_EXR_COMPRESSION_ZIP = 3 |
C++: enum ImwriteEXRCompressionFlags (cv.ImwriteEXRCompressionFlags) | |
const int | IMWRITE_EXR_COMPRESSION_ZIPS = 2 |
C++: enum ImwriteEXRCompressionFlags (cv.ImwriteEXRCompressionFlags) | |
const int | IMWRITE_EXR_DWA_COMPRESSION_LEVEL = (3 << 4) + 2 |
C++: enum ImwriteFlags (cv.ImwriteFlags) | |
const int | IMWRITE_EXR_TYPE = (3 << 4) + 0 |
C++: enum ImwriteFlags (cv.ImwriteFlags) | |
const int | IMWRITE_EXR_TYPE_FLOAT = 2 |
C++: enum ImwriteEXRTypeFlags (cv.ImwriteEXRTypeFlags) | |
const int | IMWRITE_EXR_TYPE_HALF = 1 |
C++: enum ImwriteEXRTypeFlags (cv.ImwriteEXRTypeFlags) | |
const int | IMWRITE_GIF_COLORTABLE = 1029 |
C++: enum ImwriteFlags (cv.ImwriteFlags) | |
const int | IMWRITE_GIF_COLORTABLE_SIZE_128 = 7 |
C++: enum ImwriteGIFCompressionFlags (cv.ImwriteGIFCompressionFlags) | |
const int | IMWRITE_GIF_COLORTABLE_SIZE_16 = 4 |
C++: enum ImwriteGIFCompressionFlags (cv.ImwriteGIFCompressionFlags) | |
const int | IMWRITE_GIF_COLORTABLE_SIZE_256 = 8 |
C++: enum ImwriteGIFCompressionFlags (cv.ImwriteGIFCompressionFlags) | |
const int | IMWRITE_GIF_COLORTABLE_SIZE_32 = 5 |
C++: enum ImwriteGIFCompressionFlags (cv.ImwriteGIFCompressionFlags) | |
const int | IMWRITE_GIF_COLORTABLE_SIZE_64 = 6 |
C++: enum ImwriteGIFCompressionFlags (cv.ImwriteGIFCompressionFlags) | |
const int | IMWRITE_GIF_COLORTABLE_SIZE_8 = 3 |
C++: enum ImwriteGIFCompressionFlags (cv.ImwriteGIFCompressionFlags) | |
const int | IMWRITE_GIF_DITHER = 1027 |
C++: enum ImwriteFlags (cv.ImwriteFlags) | |
const int | IMWRITE_GIF_FAST_FLOYD_DITHER = 2 |
C++: enum ImwriteGIFCompressionFlags (cv.ImwriteGIFCompressionFlags) | |
const int | IMWRITE_GIF_FAST_NO_DITHER = 1 |
C++: enum ImwriteGIFCompressionFlags (cv.ImwriteGIFCompressionFlags) | |
const int | IMWRITE_GIF_LOOP = 1024 |
C++: enum ImwriteFlags (cv.ImwriteFlags) | |
const int | IMWRITE_GIF_QUALITY = 1026 |
C++: enum ImwriteFlags (cv.ImwriteFlags) | |
const int | IMWRITE_GIF_SPEED = 1025 |
C++: enum ImwriteFlags (cv.ImwriteFlags) | |
const int | IMWRITE_GIF_TRANSPARENCY = 1028 |
C++: enum ImwriteFlags (cv.ImwriteFlags) | |
const int | IMWRITE_HDR_COMPRESSION = (5 << 4) + 0 |
C++: enum ImwriteFlags (cv.ImwriteFlags) | |
const int | IMWRITE_HDR_COMPRESSION_NONE = 0 |
C++: enum ImwriteHDRCompressionFlags (cv.ImwriteHDRCompressionFlags) | |
const int | IMWRITE_HDR_COMPRESSION_RLE = 1 |
C++: enum ImwriteHDRCompressionFlags (cv.ImwriteHDRCompressionFlags) | |
const int | IMWRITE_JPEG2000_COMPRESSION_X1000 = 272 |
C++: enum ImwriteFlags (cv.ImwriteFlags) | |
const int | IMWRITE_JPEG_CHROMA_QUALITY = 6 |
C++: enum ImwriteFlags (cv.ImwriteFlags) | |
const int | IMWRITE_JPEG_LUMA_QUALITY = 5 |
C++: enum ImwriteFlags (cv.ImwriteFlags) | |
const int | IMWRITE_JPEG_OPTIMIZE = 3 |
C++: enum ImwriteFlags (cv.ImwriteFlags) | |
const int | IMWRITE_JPEG_PROGRESSIVE = 2 |
C++: enum ImwriteFlags (cv.ImwriteFlags) | |
const int | IMWRITE_JPEG_QUALITY = 1 |
C++: enum ImwriteFlags (cv.ImwriteFlags) | |
const int | IMWRITE_JPEG_RST_INTERVAL = 4 |
C++: enum ImwriteFlags (cv.ImwriteFlags) | |
const int | IMWRITE_JPEG_SAMPLING_FACTOR = 7 |
C++: enum ImwriteFlags (cv.ImwriteFlags) | |
const int | IMWRITE_JPEG_SAMPLING_FACTOR_411 = 0x411111 |
C++: enum ImwriteJPEGSamplingFactorParams (cv.ImwriteJPEGSamplingFactorParams) | |
const int | IMWRITE_JPEG_SAMPLING_FACTOR_420 = 0x221111 |
C++: enum ImwriteJPEGSamplingFactorParams (cv.ImwriteJPEGSamplingFactorParams) | |
const int | IMWRITE_JPEG_SAMPLING_FACTOR_422 = 0x211111 |
C++: enum ImwriteJPEGSamplingFactorParams (cv.ImwriteJPEGSamplingFactorParams) | |
const int | IMWRITE_JPEG_SAMPLING_FACTOR_440 = 0x121111 |
C++: enum ImwriteJPEGSamplingFactorParams (cv.ImwriteJPEGSamplingFactorParams) | |
const int | IMWRITE_JPEG_SAMPLING_FACTOR_444 = 0x111111 |
C++: enum ImwriteJPEGSamplingFactorParams (cv.ImwriteJPEGSamplingFactorParams) | |
const int | IMWRITE_JPEGXL_DECODING_SPEED = 643 |
C++: enum ImwriteFlags (cv.ImwriteFlags) | |
const int | IMWRITE_JPEGXL_DISTANCE = 642 |
C++: enum ImwriteFlags (cv.ImwriteFlags) | |
const int | IMWRITE_JPEGXL_EFFORT = 641 |
C++: enum ImwriteFlags (cv.ImwriteFlags) | |
const int | IMWRITE_JPEGXL_QUALITY = 640 |
C++: enum ImwriteFlags (cv.ImwriteFlags) | |
const int | IMWRITE_PAM_FORMAT_BLACKANDWHITE = 1 |
C++: enum ImwritePAMFlags (cv.ImwritePAMFlags) | |
const int | IMWRITE_PAM_FORMAT_GRAYSCALE = 2 |
C++: enum ImwritePAMFlags (cv.ImwritePAMFlags) | |
const int | IMWRITE_PAM_FORMAT_GRAYSCALE_ALPHA = 3 |
C++: enum ImwritePAMFlags (cv.ImwritePAMFlags) | |
const int | IMWRITE_PAM_FORMAT_NULL = 0 |
C++: enum ImwritePAMFlags (cv.ImwritePAMFlags) | |
const int | IMWRITE_PAM_FORMAT_RGB = 4 |
C++: enum ImwritePAMFlags (cv.ImwritePAMFlags) | |
const int | IMWRITE_PAM_FORMAT_RGB_ALPHA = 5 |
C++: enum ImwritePAMFlags (cv.ImwritePAMFlags) | |
const int | IMWRITE_PAM_TUPLETYPE = 128 |
C++: enum ImwriteFlags (cv.ImwriteFlags) | |
const int | IMWRITE_PNG_ALL_FILTERS = (IMWRITE_PNG_FAST_FILTERS | IMWRITE_PNG_FILTER_AVG | IMWRITE_PNG_FILTER_PAETH) |
C++: enum ImwritePNGFilterFlags (cv.ImwritePNGFilterFlags) | |
const int | IMWRITE_PNG_BILEVEL = 18 |
C++: enum ImwriteFlags (cv.ImwriteFlags) | |
const int | IMWRITE_PNG_COMPRESSION = 16 |
C++: enum ImwriteFlags (cv.ImwriteFlags) | |
const int | IMWRITE_PNG_FAST_FILTERS = (IMWRITE_PNG_FILTER_NONE | IMWRITE_PNG_FILTER_SUB | IMWRITE_PNG_FILTER_UP) |
C++: enum ImwritePNGFilterFlags (cv.ImwritePNGFilterFlags) | |
const int | IMWRITE_PNG_FILTER = 19 |
C++: enum ImwriteFlags (cv.ImwriteFlags) | |
const int | IMWRITE_PNG_FILTER_AVG = 64 |
C++: enum ImwritePNGFilterFlags (cv.ImwritePNGFilterFlags) | |
const int | IMWRITE_PNG_FILTER_NONE = 8 |
C++: enum ImwritePNGFilterFlags (cv.ImwritePNGFilterFlags) | |
const int | IMWRITE_PNG_FILTER_PAETH = 128 |
C++: enum ImwritePNGFilterFlags (cv.ImwritePNGFilterFlags) | |
const int | IMWRITE_PNG_FILTER_SUB = 16 |
C++: enum ImwritePNGFilterFlags (cv.ImwritePNGFilterFlags) | |
const int | IMWRITE_PNG_FILTER_UP = 32 |
C++: enum ImwritePNGFilterFlags (cv.ImwritePNGFilterFlags) | |
const int | IMWRITE_PNG_STRATEGY = 17 |
C++: enum ImwriteFlags (cv.ImwriteFlags) | |
const int | IMWRITE_PNG_STRATEGY_DEFAULT = 0 |
C++: enum ImwritePNGFlags (cv.ImwritePNGFlags) | |
const int | IMWRITE_PNG_STRATEGY_FILTERED = 1 |
C++: enum ImwritePNGFlags (cv.ImwritePNGFlags) | |
const int | IMWRITE_PNG_STRATEGY_FIXED = 4 |
C++: enum ImwritePNGFlags (cv.ImwritePNGFlags) | |
const int | IMWRITE_PNG_STRATEGY_HUFFMAN_ONLY = 2 |
C++: enum ImwritePNGFlags (cv.ImwritePNGFlags) | |
const int | IMWRITE_PNG_STRATEGY_RLE = 3 |
C++: enum ImwritePNGFlags (cv.ImwritePNGFlags) | |
const int | IMWRITE_PXM_BINARY = 32 |
C++: enum ImwriteFlags (cv.ImwriteFlags) | |
const int | IMWRITE_TIFF_COMPRESSION = 259 |
C++: enum ImwriteFlags (cv.ImwriteFlags) | |
const int | IMWRITE_TIFF_COMPRESSION_ADOBE_DEFLATE = 8 |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags) | |
const int | IMWRITE_TIFF_COMPRESSION_CCITT_T4 = 3 |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags) | |
const int | IMWRITE_TIFF_COMPRESSION_CCITT_T6 = 4 |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags) | |
const int | IMWRITE_TIFF_COMPRESSION_CCITTFAX3 = 3 |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags) | |
const int | IMWRITE_TIFF_COMPRESSION_CCITTFAX4 = 4 |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags) | |
const int | IMWRITE_TIFF_COMPRESSION_CCITTRLE = 2 |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags) | |
const int | IMWRITE_TIFF_COMPRESSION_CCITTRLEW = 32771 |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags) | |
const int | IMWRITE_TIFF_COMPRESSION_DCS = 32947 |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags) | |
const int | IMWRITE_TIFF_COMPRESSION_DEFLATE = 32946 |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags) | |
const int | IMWRITE_TIFF_COMPRESSION_IT8BL = 32898 |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags) | |
const int | IMWRITE_TIFF_COMPRESSION_IT8CTPAD = 32895 |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags) | |
const int | IMWRITE_TIFF_COMPRESSION_IT8LW = 32896 |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags) | |
const int | IMWRITE_TIFF_COMPRESSION_IT8MP = 32897 |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags) | |
const int | IMWRITE_TIFF_COMPRESSION_JBIG = 34661 |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags) | |
const int | IMWRITE_TIFF_COMPRESSION_JP2000 = 34712 |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags) | |
const int | IMWRITE_TIFF_COMPRESSION_JPEG = 7 |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags) | |
const int | IMWRITE_TIFF_COMPRESSION_JXL = 50002 |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags) | |
const int | IMWRITE_TIFF_COMPRESSION_LERC = 34887 |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags) | |
const int | IMWRITE_TIFF_COMPRESSION_LZMA = 34925 |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags) | |
const int | IMWRITE_TIFF_COMPRESSION_LZW = 5 |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags) | |
const int | IMWRITE_TIFF_COMPRESSION_NEXT = 32766 |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags) | |
const int | IMWRITE_TIFF_COMPRESSION_NONE = 1 |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags) | |
const int | IMWRITE_TIFF_COMPRESSION_OJPEG = 6 |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags) | |
const int | IMWRITE_TIFF_COMPRESSION_PACKBITS = 32773 |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags) | |
const int | IMWRITE_TIFF_COMPRESSION_PIXARFILM = 32908 |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags) | |
const int | IMWRITE_TIFF_COMPRESSION_PIXARLOG = 32909 |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags) | |
const int | IMWRITE_TIFF_COMPRESSION_SGILOG = 34676 |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags) | |
const int | IMWRITE_TIFF_COMPRESSION_SGILOG24 = 34677 |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags) | |
const int | IMWRITE_TIFF_COMPRESSION_T43 = 10 |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags) | |
const int | IMWRITE_TIFF_COMPRESSION_T85 = 9 |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags) | |
const int | IMWRITE_TIFF_COMPRESSION_THUNDERSCAN = 32809 |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags) | |
const int | IMWRITE_TIFF_COMPRESSION_WEBP = 50001 |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags) | |
const int | IMWRITE_TIFF_COMPRESSION_ZSTD = 50000 |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags) | |
const int | IMWRITE_TIFF_PREDICTOR = 317 |
C++: enum ImwriteFlags (cv.ImwriteFlags) | |
const int | IMWRITE_TIFF_PREDICTOR_FLOATINGPOINT = 3 |
C++: enum ImwriteTiffPredictorFlags (cv.ImwriteTiffPredictorFlags) | |
const int | IMWRITE_TIFF_PREDICTOR_HORIZONTAL = 2 |
C++: enum ImwriteTiffPredictorFlags (cv.ImwriteTiffPredictorFlags) | |
const int | IMWRITE_TIFF_PREDICTOR_NONE = 1 |
C++: enum ImwriteTiffPredictorFlags (cv.ImwriteTiffPredictorFlags) | |
const int | IMWRITE_TIFF_RESUNIT = 256 |
C++: enum ImwriteFlags (cv.ImwriteFlags) | |
const int | IMWRITE_TIFF_ROWSPERSTRIP = 278 |
C++: enum ImwriteFlags (cv.ImwriteFlags) | |
const int | IMWRITE_TIFF_XDPI = 257 |
C++: enum ImwriteFlags (cv.ImwriteFlags) | |
const int | IMWRITE_TIFF_YDPI = 258 |
C++: enum ImwriteFlags (cv.ImwriteFlags) | |
const int | IMWRITE_WEBP_QUALITY = 64 |
C++: enum ImwriteFlags (cv.ImwriteFlags) | |
|
static |
Checks if the specified image file can be decoded by OpenCV.
The function haveImageReader checks if OpenCV is capable of reading the specified file. This can be useful for verifying support for a given image format before attempting to load an image.
filename | The name of the file to be checked. |
|
static |
Checks if the specified image file or specified file extension can be encoded by OpenCV.
The function haveImageWriter checks if OpenCV is capable of writing images with the specified file extension. This can be useful for verifying support for a given image format before attempting to save an image.
filename | The name of the file or the file extension (e.g., ".jpg", ".png"). It is recommended to provide the file extension rather than the full file name. |
|
static |
Returns the number of images inside the given file.
The function imcount returns the number of pages in a multi-page image (e.g. TIFF), the number of frames in an animation (e.g. AVIF), and 1 otherwise. If the image cannot be decoded, 0 is returned.
filename | Name of file to be loaded. |
flags | Flag that can take values of cv::ImreadModes, default with cv::IMREAD_ANYCOLOR. |
todo 9.
|
static |
Returns the number of images inside the given file.
The function imcount returns the number of pages in a multi-page image (e.g. TIFF), the number of frames in an animation (e.g. AVIF), and 1 otherwise. If the image cannot be decoded, 0 is returned.
filename | Name of file to be loaded. |
flags | Flag that can take values of cv::ImreadModes, default with cv::IMREAD_ANYCOLOR. |
todo 8.
Reads an image from a buffer in memory.
The function imdecode reads an image from the specified buffer in the memory. If the buffer is too short or contains invalid data, the function returns an empty matrix ( Mat::data==NULL ).
See cv::imread for the list of supported formats and flags description.
buf | Input array or vector of bytes. |
flags | The same flags as in cv::imread, see cv::ImreadModes. |
|
static |
Loads frames from an animated image buffer into an Animation structure.
The function imdecodeanimation loads frames from an animated image buffer (e.g., GIF, AVIF, APNG, WEBP) into the provided Animation struct.
buf | A reference to an InputArray containing the image buffer. |
animation | A reference to an Animation structure where the loaded frames will be stored. It should be initialized before the function is called. |
start | The index of the first frame to load. This is optional and defaults to 0. |
count | The number of frames to load. This is optional and defaults to 32767. |
|
static |
Loads frames from an animated image buffer into an Animation structure.
The function imdecodeanimation loads frames from an animated image buffer (e.g., GIF, AVIF, APNG, WEBP) into the provided Animation struct.
buf | A reference to an InputArray containing the image buffer. |
animation | A reference to an Animation structure where the loaded frames will be stored. It should be initialized before the function is called. |
start | The index of the first frame to load. This is optional and defaults to 0. |
count | The number of frames to load. This is optional and defaults to 32767. |
|
static |
Loads frames from an animated image buffer into an Animation structure.
The function imdecodeanimation loads frames from an animated image buffer (e.g., GIF, AVIF, APNG, WEBP) into the provided Animation struct.
buf | A reference to an InputArray containing the image buffer. |
animation | A reference to an Animation structure where the loaded frames will be stored. It should be initialized before the function is called. |
start | The index of the first frame to load. This is optional and defaults to 0. |
count | The number of frames to load. This is optional and defaults to 32767. |
|
static |
Reads a multi-page image from a buffer in memory.
The function imdecodemulti reads a multi-page image from the specified buffer in the memory. If the buffer is too short or contains invalid data, the function returns false.
See cv::imreadmulti for the list of supported formats and flags description.
buf | Input array or vector of bytes. |
flags | The same flags as in cv::imread, see cv::ImreadModes. |
mats | A vector of Mat objects holding each page, if more than one. |
range | A continuous selection of pages. |
|
static |
Reads a multi-page image from a buffer in memory.
The function imdecodemulti reads a multi-page image from the specified buffer in the memory. If the buffer is too short or contains invalid data, the function returns false.
See cv::imreadmulti for the list of supported formats and flags description.
buf | Input array or vector of bytes. |
flags | The same flags as in cv::imread, see cv::ImreadModes. |
mats | A vector of Mat objects holding each page, if more than one. |
range | A continuous selection of pages. |
|
static |
Reads an image from a buffer in memory together with associated metadata.
The function imdecode reads an image from the specified buffer in the memory. If the buffer is too short or contains invalid data, the function returns an empty matrix ( Mat::data==NULL ).
See cv::imread for the list of supported formats and flags description.
buf | Input array or vector of bytes. |
metadataTypes | Output vector with types of metadata chucks returned in metadata, see ImageMetadataType. |
metadata | Output vector of vectors or vector of matrices to store the retrieved metadata |
flags | The same flags as in cv::imread, see cv::ImreadModes. |
|
static |
Reads an image from a buffer in memory together with associated metadata.
The function imdecode reads an image from the specified buffer in the memory. If the buffer is too short or contains invalid data, the function returns an empty matrix ( Mat::data==NULL ).
See cv::imread for the list of supported formats and flags description.
buf | Input array or vector of bytes. |
metadataTypes | Output vector with types of metadata chucks returned in metadata, see ImageMetadataType. |
metadata | Output vector of vectors or vector of matrices to store the retrieved metadata |
flags | The same flags as in cv::imread, see cv::ImreadModes. |
|
static |
Encodes an image into a memory buffer.
The function imencode compresses the image and stores it in the memory buffer that is resized to fit the result. See cv::imwrite for the list of supported formats and flags description.
ext | File extension that defines the output format. Must include a leading period. |
img | Image to be compressed. |
buf | Output buffer resized to fit the compressed image. |
params | Format-specific parameters. See cv::imwrite and cv::ImwriteFlags. |
|
static |
Encodes an image into a memory buffer.
The function imencode compresses the image and stores it in the memory buffer that is resized to fit the result. See cv::imwrite for the list of supported formats and flags description.
ext | File extension that defines the output format. Must include a leading period. |
img | Image to be compressed. |
buf | Output buffer resized to fit the compressed image. |
params | Format-specific parameters. See cv::imwrite and cv::ImwriteFlags. |
|
static |
Encodes an Animation to a memory buffer.
The function imencodeanimation encodes the provided Animation data into a memory buffer in an animated format. Supported formats depend on the implementation and may include formats like GIF, AVIF, APNG, or WEBP.
ext | The file extension that determines the format of the encoded data. |
animation | A constant reference to an Animation struct containing the frames and metadata to be encoded. |
buf | A reference to a vector of unsigned chars where the encoded data will be stored. |
params | Optional format-specific parameters encoded as pairs (paramId_1, paramValue_1, paramId_2, paramValue_2, ...). These parameters are used to specify additional options for the encoding process. Refer to cv::ImwriteFlags for details on possible parameters. |
|
static |
Encodes an Animation to a memory buffer.
The function imencodeanimation encodes the provided Animation data into a memory buffer in an animated format. Supported formats depend on the implementation and may include formats like GIF, AVIF, APNG, or WEBP.
ext | The file extension that determines the format of the encoded data. |
animation | A constant reference to an Animation struct containing the frames and metadata to be encoded. |
buf | A reference to a vector of unsigned chars where the encoded data will be stored. |
params | Optional format-specific parameters encoded as pairs (paramId_1, paramValue_1, paramId_2, paramValue_2, ...). These parameters are used to specify additional options for the encoding process. Refer to cv::ImwriteFlags for details on possible parameters. |
|
static |
Encodes array of images into a memory buffer.
The function is analog to cv::imencode for in-memory multi-page image compression. See cv::imwrite for the list of supported formats and flags description.
ext | File extension that defines the output format. Must include a leading period. |
imgs | Vector of images to be written. |
buf | Output buffer resized to fit the compressed data. |
params | Format-specific parameters. See cv::imwrite and cv::ImwriteFlags. |
|
static |
Encodes array of images into a memory buffer.
The function is analog to cv::imencode for in-memory multi-page image compression. See cv::imwrite for the list of supported formats and flags description.
ext | File extension that defines the output format. Must include a leading period. |
imgs | Vector of images to be written. |
buf | Output buffer resized to fit the compressed data. |
params | Format-specific parameters. See cv::imwrite and cv::ImwriteFlags. |
|
static |
Encodes an image into a memory buffer.
The function imencode compresses the image and stores it in the memory buffer that is resized to fit the result. See cv::imwrite for the list of supported formats and flags description.
ext | File extension that defines the output format. Must include a leading period. |
img | Image to be compressed. |
metadataTypes | Vector with types of metadata chucks stored in metadata to write, see ImageMetadataType. |
metadata | Vector of vectors or vector of matrices with chunks of metadata to store into the file |
buf | Output buffer resized to fit the compressed image. |
params | Format-specific parameters. See cv::imwrite and cv::ImwriteFlags. |
|
static |
Encodes an image into a memory buffer.
The function imencode compresses the image and stores it in the memory buffer that is resized to fit the result. See cv::imwrite for the list of supported formats and flags description.
ext | File extension that defines the output format. Must include a leading period. |
img | Image to be compressed. |
metadataTypes | Vector with types of metadata chucks stored in metadata to write, see ImageMetadataType. |
metadata | Vector of vectors or vector of matrices with chunks of metadata to store into the file |
buf | Output buffer resized to fit the compressed image. |
params | Format-specific parameters. See cv::imwrite and cv::ImwriteFlags. |
|
static |
Loads an image from a file.
The imread
function loads an image from the specified file and returns OpenCV matrix. If the image cannot be read (because of a missing file, improper permissions, or unsupported/invalid format), the function returns an empty matrix.
Currently, the following file formats are supported:
OPENCV_IO_MAX_IMAGE_PIXELS
. See tutorial_env_reference. filename | Name of the file to be loaded. |
flags | Flag that can take values of cv::ImreadModes . |
|
static |
Loads an image from a file.
The imread
function loads an image from the specified file and returns OpenCV matrix. If the image cannot be read (because of a missing file, improper permissions, or unsupported/invalid format), the function returns an empty matrix.
Currently, the following file formats are supported:
OPENCV_IO_MAX_IMAGE_PIXELS
. See tutorial_env_reference. filename | Name of the file to be loaded. |
flags | Flag that can take values of cv::ImreadModes . |
|
static |
Loads an image from a file.
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts and the return value.
filename | Name of file to be loaded. |
dst | object in which the image will be loaded. |
flags | Flag that can take values of cv::ImreadModes |
The image passing through the img parameter can be pre-allocated. The memory is reused if the shape and the type match with the load image.
|
static |
Loads an image from a file.
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts and the return value.
filename | Name of file to be loaded. |
dst | object in which the image will be loaded. |
flags | Flag that can take values of cv::ImreadModes |
The image passing through the img parameter can be pre-allocated. The memory is reused if the shape and the type match with the load image.
|
static |
Loads frames from an animated image file into an Animation structure.
The function imreadanimation loads frames from an animated image file (e.g., GIF, AVIF, APNG, WEBP) into the provided Animation struct.
filename | A string containing the path to the file. |
animation | A reference to an Animation structure where the loaded frames will be stored. It should be initialized before the function is called. |
start | The index of the first frame to load. This is optional and defaults to 0. |
count | The number of frames to load. This is optional and defaults to 32767. |
|
static |
Loads frames from an animated image file into an Animation structure.
The function imreadanimation loads frames from an animated image file (e.g., GIF, AVIF, APNG, WEBP) into the provided Animation struct.
filename | A string containing the path to the file. |
animation | A reference to an Animation structure where the loaded frames will be stored. It should be initialized before the function is called. |
start | The index of the first frame to load. This is optional and defaults to 0. |
count | The number of frames to load. This is optional and defaults to 32767. |
|
static |
Loads frames from an animated image file into an Animation structure.
The function imreadanimation loads frames from an animated image file (e.g., GIF, AVIF, APNG, WEBP) into the provided Animation struct.
filename | A string containing the path to the file. |
animation | A reference to an Animation structure where the loaded frames will be stored. It should be initialized before the function is called. |
start | The index of the first frame to load. This is optional and defaults to 0. |
count | The number of frames to load. This is optional and defaults to 32767. |
|
static |
Loads a multi-page image from a file.
The function imreadmulti loads a multi-page image from the specified file into a vector of Mat objects.
filename | Name of file to be loaded. |
mats | A vector of Mat objects holding each page. |
flags | Flag that can take values of cv::ImreadModes, default with cv::IMREAD_ANYCOLOR. |
cv::imread
|
static |
Loads a multi-page image from a file.
The function imreadmulti loads a multi-page image from the specified file into a vector of Mat objects.
filename | Name of file to be loaded. |
mats | A vector of Mat objects holding each page. |
flags | Flag that can take values of cv::ImreadModes, default with cv::IMREAD_ANYCOLOR. |
cv::imread
|
static |
Loads images of a multi-page image from a file.
The function imreadmulti loads a specified range from a multi-page image from the specified file into a vector of Mat objects.
filename | Name of file to be loaded. |
mats | A vector of Mat objects holding each page. |
start | Start index of the image to load |
count | Count number of images to load |
flags | Flag that can take values of cv::ImreadModes, default with cv::IMREAD_ANYCOLOR. |
cv::imread
|
static |
Loads images of a multi-page image from a file.
The function imreadmulti loads a specified range from a multi-page image from the specified file into a vector of Mat objects.
filename | Name of file to be loaded. |
mats | A vector of Mat objects holding each page. |
start | Start index of the image to load |
count | Count number of images to load |
flags | Flag that can take values of cv::ImreadModes, default with cv::IMREAD_ANYCOLOR. |
cv::imread
|
static |
Reads an image from a file together with associated metadata.
The function imreadWithMetadata reads image from the specified file. It does the same thing as imread, but additionally reads metadata if the corresponding file contains any.
filename | Name of the file to be loaded. |
metadataTypes | Output vector with types of metadata chucks returned in metadata, see ImageMetadataType. |
metadata | Output vector of vectors or vector of matrices to store the retrieved metadata |
flags | Flag that can take values of cv::ImreadModes |
|
static |
Reads an image from a file together with associated metadata.
The function imreadWithMetadata reads image from the specified file. It does the same thing as imread, but additionally reads metadata if the corresponding file contains any.
filename | Name of the file to be loaded. |
metadataTypes | Output vector with types of metadata chucks returned in metadata, see ImageMetadataType. |
metadata | Output vector of vectors or vector of matrices to store the retrieved metadata |
flags | Flag that can take values of cv::ImreadModes |
|
static |
Saves an image to a specified file.
The function imwrite saves the image to the specified file. The image format is chosen based on the filename extension (see cv::imread for the list of extensions). In general, only 8-bit unsigned (CV_8U) single-channel or 3-channel (with 'BGR' channel order) images can be saved using this function, with these exceptions:
If the image format is not supported, the image will be converted to 8-bit unsigned (CV_8U) and saved that way.
If the format, depth or channel order is different, use Mat.convertTo and cv::cvtColor to convert it before saving. Or, use the universal FileStorage I/O functions to save the image to XML or YAML format.
The sample below shows how to create a BGRA image, how to set custom compression parameters and save it to a PNG file. It also demonstrates how to save multiple images in a TIFF file:
filename | Name of the file. |
img | (Mat or vector of Mat) Image or Images to be saved. |
params | Format-specific parameters encoded as pairs (paramId_1, paramValue_1, paramId_2, paramValue_2, ... .) see cv::ImwriteFlags |
|
static |
Saves an image to a specified file.
The function imwrite saves the image to the specified file. The image format is chosen based on the filename extension (see cv::imread for the list of extensions). In general, only 8-bit unsigned (CV_8U) single-channel or 3-channel (with 'BGR' channel order) images can be saved using this function, with these exceptions:
If the image format is not supported, the image will be converted to 8-bit unsigned (CV_8U) and saved that way.
If the format, depth or channel order is different, use Mat.convertTo and cv::cvtColor to convert it before saving. Or, use the universal FileStorage I/O functions to save the image to XML or YAML format.
The sample below shows how to create a BGRA image, how to set custom compression parameters and save it to a PNG file. It also demonstrates how to save multiple images in a TIFF file:
filename | Name of the file. |
img | (Mat or vector of Mat) Image or Images to be saved. |
params | Format-specific parameters encoded as pairs (paramId_1, paramValue_1, paramId_2, paramValue_2, ... .) see cv::ImwriteFlags |
|
static |
Saves an Animation to a specified file.
The function imwriteanimation saves the provided Animation data to the specified file in an animated format. Supported formats depend on the implementation and may include formats like GIF, AVIF, APNG, or WEBP.
filename | The name of the file where the animation will be saved. The file extension determines the format. |
animation | A constant reference to an Animation struct containing the frames and metadata to be saved. |
params | Optional format-specific parameters encoded as pairs (paramId_1, paramValue_1, paramId_2, paramValue_2, ...). These parameters are used to specify additional options for the encoding process. Refer to cv::ImwriteFlags for details on possible parameters. |
|
static |
Saves an Animation to a specified file.
The function imwriteanimation saves the provided Animation data to the specified file in an animated format. Supported formats depend on the implementation and may include formats like GIF, AVIF, APNG, or WEBP.
filename | The name of the file where the animation will be saved. The file extension determines the format. |
animation | A constant reference to an Animation struct containing the frames and metadata to be saved. |
params | Optional format-specific parameters encoded as pairs (paramId_1, paramValue_1, paramId_2, paramValue_2, ...). These parameters are used to specify additional options for the encoding process. Refer to cv::ImwriteFlags for details on possible parameters. |
|
static |
|
static |
|
static |
Saves an image to a specified file with metadata.
The function imwriteWithMetadata saves the image to the specified file. It does the same thing as imwrite, but additionally writes metadata if the corresponding format supports it.
filename | Name of the file. As with imwrite, image format is determined by the file extension. |
img | (Mat or vector of Mat) Image or Images to be saved. |
metadataTypes | Vector with types of metadata chucks stored in metadata to write, see ImageMetadataType. |
metadata | Vector of vectors or vector of matrices with chunks of metadata to store into the file |
params | Format-specific parameters encoded as pairs (paramId_1, paramValue_1, paramId_2, paramValue_2, ... .) see cv::ImwriteFlags |
|
static |
Saves an image to a specified file with metadata.
The function imwriteWithMetadata saves the image to the specified file. It does the same thing as imwrite, but additionally writes metadata if the corresponding format supports it.
filename | Name of the file. As with imwrite, image format is determined by the file extension. |
img | (Mat or vector of Mat) Image or Images to be saved. |
metadataTypes | Vector with types of metadata chucks stored in metadata to write, see ImageMetadataType. |
metadata | Vector of vectors or vector of matrices with chunks of metadata to store into the file |
params | Format-specific parameters encoded as pairs (paramId_1, paramValue_1, paramId_2, paramValue_2, ... .) see cv::ImwriteFlags |
|
static |
C++: enum ImageMetadataType (cv.ImageMetadataType)
|
static |
C++: enum ImageMetadataType (cv.ImageMetadataType)
|
static |
C++: enum ImageMetadataType (cv.ImageMetadataType)
|
static |
C++: enum ImageMetadataType (cv.ImageMetadataType)
|
static |
C++: enum ImageMetadataType (cv.ImageMetadataType)
|
static |
C++: enum ImreadModes (cv.ImreadModes)
|
static |
C++: enum ImreadModes (cv.ImreadModes)
|
static |
C++: enum ImreadModes (cv.ImreadModes)
|
static |
C++: enum ImreadModes (cv.ImreadModes)
|
static |
C++: enum ImreadModes (cv.ImreadModes)
|
static |
C++: enum ImreadModes (cv.ImreadModes)
|
static |
C++: enum ImreadModes (cv.ImreadModes)
|
static |
C++: enum ImreadModes (cv.ImreadModes)
|
static |
C++: enum ImreadModes (cv.ImreadModes)
|
static |
C++: enum ImreadModes (cv.ImreadModes)
|
static |
C++: enum ImreadModes (cv.ImreadModes)
|
static |
C++: enum ImreadModes (cv.ImreadModes)
|
static |
C++: enum ImreadModes (cv.ImreadModes)
|
static |
C++: enum ImreadModes (cv.ImreadModes)
|
static |
C++: enum ImreadModes (cv.ImreadModes)
|
static |
C++: enum ImwriteFlags (cv.ImwriteFlags)
|
static |
C++: enum ImwriteFlags (cv.ImwriteFlags)
|
static |
C++: enum ImwriteFlags (cv.ImwriteFlags)
|
static |
C++: enum ImwriteFlags (cv.ImwriteFlags)
|
static |
C++: enum ImwriteEXRCompressionFlags (cv.ImwriteEXRCompressionFlags)
|
static |
C++: enum ImwriteEXRCompressionFlags (cv.ImwriteEXRCompressionFlags)
|
static |
C++: enum ImwriteEXRCompressionFlags (cv.ImwriteEXRCompressionFlags)
|
static |
C++: enum ImwriteEXRCompressionFlags (cv.ImwriteEXRCompressionFlags)
|
static |
C++: enum ImwriteEXRCompressionFlags (cv.ImwriteEXRCompressionFlags)
|
static |
C++: enum ImwriteEXRCompressionFlags (cv.ImwriteEXRCompressionFlags)
|
static |
C++: enum ImwriteEXRCompressionFlags (cv.ImwriteEXRCompressionFlags)
|
static |
C++: enum ImwriteEXRCompressionFlags (cv.ImwriteEXRCompressionFlags)
|
static |
C++: enum ImwriteEXRCompressionFlags (cv.ImwriteEXRCompressionFlags)
|
static |
C++: enum ImwriteEXRCompressionFlags (cv.ImwriteEXRCompressionFlags)
|
static |
C++: enum ImwriteFlags (cv.ImwriteFlags)
|
static |
C++: enum ImwriteFlags (cv.ImwriteFlags)
|
static |
C++: enum ImwriteEXRTypeFlags (cv.ImwriteEXRTypeFlags)
|
static |
C++: enum ImwriteEXRTypeFlags (cv.ImwriteEXRTypeFlags)
|
static |
C++: enum ImwriteFlags (cv.ImwriteFlags)
|
static |
C++: enum ImwriteGIFCompressionFlags (cv.ImwriteGIFCompressionFlags)
|
static |
C++: enum ImwriteGIFCompressionFlags (cv.ImwriteGIFCompressionFlags)
|
static |
C++: enum ImwriteGIFCompressionFlags (cv.ImwriteGIFCompressionFlags)
|
static |
C++: enum ImwriteGIFCompressionFlags (cv.ImwriteGIFCompressionFlags)
|
static |
C++: enum ImwriteGIFCompressionFlags (cv.ImwriteGIFCompressionFlags)
|
static |
C++: enum ImwriteGIFCompressionFlags (cv.ImwriteGIFCompressionFlags)
|
static |
C++: enum ImwriteFlags (cv.ImwriteFlags)
|
static |
C++: enum ImwriteGIFCompressionFlags (cv.ImwriteGIFCompressionFlags)
|
static |
C++: enum ImwriteGIFCompressionFlags (cv.ImwriteGIFCompressionFlags)
|
static |
C++: enum ImwriteFlags (cv.ImwriteFlags)
|
static |
C++: enum ImwriteFlags (cv.ImwriteFlags)
|
static |
C++: enum ImwriteFlags (cv.ImwriteFlags)
|
static |
C++: enum ImwriteFlags (cv.ImwriteFlags)
|
static |
C++: enum ImwriteFlags (cv.ImwriteFlags)
|
static |
C++: enum ImwriteHDRCompressionFlags (cv.ImwriteHDRCompressionFlags)
|
static |
C++: enum ImwriteHDRCompressionFlags (cv.ImwriteHDRCompressionFlags)
|
static |
C++: enum ImwriteFlags (cv.ImwriteFlags)
|
static |
C++: enum ImwriteFlags (cv.ImwriteFlags)
|
static |
C++: enum ImwriteFlags (cv.ImwriteFlags)
|
static |
C++: enum ImwriteFlags (cv.ImwriteFlags)
|
static |
C++: enum ImwriteFlags (cv.ImwriteFlags)
|
static |
C++: enum ImwriteFlags (cv.ImwriteFlags)
|
static |
C++: enum ImwriteFlags (cv.ImwriteFlags)
|
static |
C++: enum ImwriteFlags (cv.ImwriteFlags)
|
static |
C++: enum ImwriteJPEGSamplingFactorParams (cv.ImwriteJPEGSamplingFactorParams)
|
static |
C++: enum ImwriteJPEGSamplingFactorParams (cv.ImwriteJPEGSamplingFactorParams)
|
static |
C++: enum ImwriteJPEGSamplingFactorParams (cv.ImwriteJPEGSamplingFactorParams)
|
static |
C++: enum ImwriteJPEGSamplingFactorParams (cv.ImwriteJPEGSamplingFactorParams)
|
static |
C++: enum ImwriteJPEGSamplingFactorParams (cv.ImwriteJPEGSamplingFactorParams)
|
static |
C++: enum ImwriteFlags (cv.ImwriteFlags)
|
static |
C++: enum ImwriteFlags (cv.ImwriteFlags)
|
static |
C++: enum ImwriteFlags (cv.ImwriteFlags)
|
static |
C++: enum ImwriteFlags (cv.ImwriteFlags)
|
static |
C++: enum ImwritePAMFlags (cv.ImwritePAMFlags)
|
static |
C++: enum ImwritePAMFlags (cv.ImwritePAMFlags)
|
static |
C++: enum ImwritePAMFlags (cv.ImwritePAMFlags)
|
static |
C++: enum ImwritePAMFlags (cv.ImwritePAMFlags)
|
static |
C++: enum ImwritePAMFlags (cv.ImwritePAMFlags)
|
static |
C++: enum ImwritePAMFlags (cv.ImwritePAMFlags)
|
static |
C++: enum ImwriteFlags (cv.ImwriteFlags)
|
static |
C++: enum ImwritePNGFilterFlags (cv.ImwritePNGFilterFlags)
|
static |
C++: enum ImwriteFlags (cv.ImwriteFlags)
|
static |
C++: enum ImwriteFlags (cv.ImwriteFlags)
|
static |
C++: enum ImwritePNGFilterFlags (cv.ImwritePNGFilterFlags)
|
static |
C++: enum ImwriteFlags (cv.ImwriteFlags)
|
static |
C++: enum ImwritePNGFilterFlags (cv.ImwritePNGFilterFlags)
|
static |
C++: enum ImwritePNGFilterFlags (cv.ImwritePNGFilterFlags)
|
static |
C++: enum ImwritePNGFilterFlags (cv.ImwritePNGFilterFlags)
|
static |
C++: enum ImwritePNGFilterFlags (cv.ImwritePNGFilterFlags)
|
static |
C++: enum ImwritePNGFilterFlags (cv.ImwritePNGFilterFlags)
|
static |
C++: enum ImwriteFlags (cv.ImwriteFlags)
|
static |
C++: enum ImwritePNGFlags (cv.ImwritePNGFlags)
|
static |
C++: enum ImwritePNGFlags (cv.ImwritePNGFlags)
|
static |
C++: enum ImwritePNGFlags (cv.ImwritePNGFlags)
|
static |
C++: enum ImwritePNGFlags (cv.ImwritePNGFlags)
|
static |
C++: enum ImwritePNGFlags (cv.ImwritePNGFlags)
|
static |
C++: enum ImwriteFlags (cv.ImwriteFlags)
|
static |
C++: enum ImwriteFlags (cv.ImwriteFlags)
|
static |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags)
|
static |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags)
|
static |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags)
|
static |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags)
|
static |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags)
|
static |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags)
|
static |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags)
|
static |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags)
|
static |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags)
|
static |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags)
|
static |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags)
|
static |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags)
|
static |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags)
|
static |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags)
|
static |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags)
|
static |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags)
|
static |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags)
|
static |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags)
|
static |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags)
|
static |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags)
|
static |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags)
|
static |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags)
|
static |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags)
|
static |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags)
|
static |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags)
|
static |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags)
|
static |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags)
|
static |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags)
|
static |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags)
|
static |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags)
|
static |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags)
|
static |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags)
|
static |
C++: enum ImwriteTiffCompressionFlags (cv.ImwriteTiffCompressionFlags)
|
static |
C++: enum ImwriteFlags (cv.ImwriteFlags)
|
static |
C++: enum ImwriteTiffPredictorFlags (cv.ImwriteTiffPredictorFlags)
|
static |
C++: enum ImwriteTiffPredictorFlags (cv.ImwriteTiffPredictorFlags)
|
static |
C++: enum ImwriteTiffPredictorFlags (cv.ImwriteTiffPredictorFlags)
|
static |
C++: enum ImwriteFlags (cv.ImwriteFlags)
|
static |
C++: enum ImwriteFlags (cv.ImwriteFlags)
|
static |
C++: enum ImwriteFlags (cv.ImwriteFlags)
|
static |
C++: enum ImwriteFlags (cv.ImwriteFlags)
|
static |
C++: enum ImwriteFlags (cv.ImwriteFlags)