|
| CV_EXPORTS_W bool | cv::haveImageReader (const String &filename) |
| | 檢查 OpenCV 是否可以解碼指定的影像檔案。
|
| |
| CV_EXPORTS_W bool | cv::haveImageWriter (const String &filename) |
| | 檢查 OpenCV 是否可以編碼指定的影像檔案或指定的副檔名。
|
| |
| 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::imdecodeanimation (InputArray buf, CV_OUT Animation &animation, int start=0, int count=INT16_MAX) |
| | 將動畫影像緩衝區中的幀載入到 Animation 結構體中。
|
| |
| 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 Mat | cv::imdecodeWithMetadata (InputArray buf, CV_OUT std::vector< int > &metadataTypes, OutputArrayOfArrays metadata, int flags=IMREAD_ANYCOLOR) |
| | 從記憶體緩衝區讀取影像及其關聯的元資料。
|
| |
| 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 bool | cv::imencodeanimation (const String &ext, const Animation &animation, CV_OUT std::vector< uchar > &buf, const std::vector< int > ¶ms=std::vector< int >()) |
| | 將 Animation 編碼到記憶體緩衝區。
|
| |
| CV_EXPORTS_W bool | cv::imencodemulti (const String &ext, InputArrayOfArrays imgs, CV_OUT std::vector< uchar > &buf, const std::vector< int > ¶ms=std::vector< int >()) |
| | 將影像陣列編碼到記憶體緩衝區。
|
| |
| CV_EXPORTS_W bool | cv::imencodeWithMetadata (const String &ext, InputArray img, const std::vector< int > &metadataTypes, InputArrayOfArrays metadata, 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_BGR) |
| | 從檔案載入影像。
|
| |
| CV_EXPORTS_W void | cv::imread (const String &filename, OutputArray dst, int flags=IMREAD_COLOR_BGR) |
| | 從檔案載入影像。
|
| |
| CV_EXPORTS_W bool | cv::imreadanimation (const String &filename, CV_OUT Animation &animation, int start=0, int count=INT16_MAX) |
| | 將動畫影像檔案中的幀載入到 Animation 結構體中。
|
| |
| 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 Mat | cv::imreadWithMetadata (const String &filename, CV_OUT std::vector< int > &metadataTypes, OutputArrayOfArrays metadata, int flags=IMREAD_ANYCOLOR) |
| | 從檔案讀取影像及相關元資料。
|
| |
| CV_EXPORTS_W bool | cv::imwrite (const String &filename, InputArray img, const std::vector< int > ¶ms=std::vector< int >()) |
| | 將影像儲存到指定檔案。
|
| |
| CV_EXPORTS_W bool | cv::imwriteanimation (const String &filename, const Animation &animation, const std::vector< int > ¶ms=std::vector< int >()) |
| | 將 Animation 儲存到指定檔案。
|
| |
| static CV_WRAP bool | cv::imwritemulti (const String &filename, InputArrayOfArrays img, const std::vector< int > ¶ms=std::vector< int >()) |
| | 用於繫結的多影像過載
|
| |
| CV_EXPORTS_W bool | cv::imwriteWithMetadata (const String &filename, InputArray img, const std::vector< int > &metadataTypes, InputArrayOfArrays &metadata, const std::vector< int > ¶ms=std::vector< int >()) |
| | 將影像和元資料儲存到指定檔案。
|
| |