c++ opencv 保存图片
时间: 2024-11-21 19:27:30 浏览: 16
在C++中使用OpenCV库保存图片,你可以通过以下几个步骤实现:
1. 包含必要的头文件:
```cpp
#include <opencv2/opencv.hpp>
```
2. 创建一个Mat对象,这个对象代表图像数据:
```cpp
cv::Mat img;
// 假设img已经包含了你要保存的图像数据
```
3. 设置图片的编码格式(如BMP、JPEG、PNG等),并指定保存路径:
```cpp
cv::imwrite("output.jpg", img, cv::IMWRITE_JPEG_QUALITY /* quality parameter (0-100) */);
```
4. 质量参数可以根据需要调整,通常范围是0到100,值越大,图像质量越好,但文件大小也越大。
示例完整代码片段:
```cpp
#include <opencv2/opencv.hpp>
int main() {
// 图像数据处理...
cv::Mat img = ...; // 填充实际的图像数据
// 以JPEG格式保存图片,质量为95%
if (cv::imwrite("output.jpg", img, cv::IMWRITE_JPEG_QUALITY | cv::IMWRITE_JPEG_OPTIMIZE | 95)) {
std::cout << "Image saved successfully!" << std::endl;
} else {
std::cout << "Failed to save the image." << std::endl;
}
return 0;
}
```
阅读全文