|
CV_EXPORTS_W bool | cv::haveImageReader (const String &filename) |
| Returns true if the specified image can be decoded by OpenCV.
|
|
CV_EXPORTS_W bool | cv::haveImageWriter (const String &filename) |
| Returns true if an image with the specified filename can be encoded by OpenCV.
|
|
CV_EXPORTS_W size_t | cv::imcount (const String &filename, int flags=IMREAD_ANYCOLOR) |
| Returns the number of images inside the give file.
|
|
CV_EXPORTS_W Mat | cv::imdecode (InputArray buf, int flags) |
| Reads an image from a buffer in memory.
|
|
CV_EXPORTS Mat | cv::imdecode (InputArray buf, int flags, Mat *dst) |
|
CV_EXPORTS_W bool | cv::imdecodemulti (InputArray buf, int flags, CV_OUT std::vector< Mat > &mats, const cv::Range &range=Range::all()) |
| Reads a multi-page image from a buffer in memory.
|
|
CV_EXPORTS_W bool | cv::imencode (const String &ext, InputArray img, CV_OUT std::vector< uchar > &buf, const std::vector< int > ¶ms=std::vector< int >()) |
| Encodes an image into a memory buffer.
|
|
CV_EXPORTS_W Mat | cv::imread (const String &filename, int flags=IMREAD_COLOR) |
| Loads an image from a file.
|
|
CV_EXPORTS_W void | cv::imread (const String &filename, OutputArray dst, int flags=IMREAD_COLOR) |
| Loads an image from a file.
|
|
CV_EXPORTS_W bool | cv::imreadmulti (const String &filename, CV_OUT std::vector< Mat > &mats, int flags=IMREAD_ANYCOLOR) |
| Loads a multi-page image from a file.
|
|
CV_EXPORTS_W bool | cv::imreadmulti (const String &filename, CV_OUT std::vector< Mat > &mats, int start, int count, int flags=IMREAD_ANYCOLOR) |
| Loads a of images of a multi-page image from a file.
|
|
CV_EXPORTS_W bool | cv::imwrite (const String &filename, InputArray img, const std::vector< int > ¶ms=std::vector< int >()) |
| Saves an image to a specified file.
|
|
static CV_WRAP bool | cv::imwritemulti (const String &filename, InputArrayOfArrays img, const std::vector< int > ¶ms=std::vector< int >()) |
| multi-image overload for bindings
|
|