|
CV_EXPORTS_W bool | cv::haveImageReader (const String &filename) |
| 如果指定的图像可以由 OpenCV 解码,则返回 true。
|
|
CV_EXPORTS_W bool | cv::haveImageWriter (const String &filename) |
| 如果具有指定文件名的图像可以由 OpenCV 编码,则返回 true。
|
|
CV_EXPORTS_W size_t | cv::imcount (const String &filename, int flags=IMREAD_ANYCOLOR) |
| 返回给定文件中的图像数量。
|
|
CV_EXPORTS_W Mat | cv::imdecode (InputArray buf, int flags) |
| 从内存中的缓冲区读取图像。
|
|
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()) |
| 从内存中的缓冲区读取多页图像。
|
|
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 >()) |
| 将图像编码到内存缓冲区。
|
|
CV_EXPORTS_W Mat | cv::imread (const String &filename, int flags=IMREAD_COLOR) |
| 从文件加载图像。
|
|
CV_EXPORTS_W void | cv::imread (const String &filename, OutputArray dst, int flags=IMREAD_COLOR) |
| 从文件加载图像。
|
|
CV_EXPORTS_W bool | cv::imreadmulti (const String &filename, CV_OUT std::vector< Mat > &mats, int flags=IMREAD_ANYCOLOR) |
| 从文件加载多页图像。
|
|
CV_EXPORTS_W bool | cv::imreadmulti (const String &filename, CV_OUT std::vector< Mat > &mats, int start, int count, int flags=IMREAD_ANYCOLOR) |
| 从文件加载多页图像的图像集。
|
|
CV_EXPORTS_W bool | cv::imwrite (const String &filename, InputArray img, const std::vector< int > ¶ms=std::vector< int >()) |
| 将图像保存到指定文件。
|
|
static CV_WRAP bool | cv::imwritemulti (const String &filename, InputArrayOfArrays img, const std::vector< int > ¶ms=std::vector< int >()) |
| 用于绑定的多图像重载
|
|