在OpenCV中,imwrite函数用于将图像保存到文件中。它的语法如下:
bool imwrite(const String& filename, InputArray img, const vector<int>& params = vector<int>())
其中:
下面是一个使用imwrite函数保存图像的示例代码:
#include <opencv2/opencv.hpp>
using namespace cv;
int main() {
// 读取图像
Mat img = imread("input.jpg", IMREAD_COLOR);
// 检查图像是否成功加载
if (img.empty()) {
printf("无法读取图像文件\n");
return -1;
}
// 保存图像
bool result = imwrite("output.jpg", img);
// 检查图像是否成功保存
if (result) {
printf("图像已保存\n");
} else {
printf("无法保存图像文件\n");
}
return 0;
}
上述代码将加载名为"input.jpg"的图像,然后使用imwrite函数将其保存为名为"output.jpg"的图像文件。你可以根据需要更改输入和输出的文件名。