imwrite的使用规则
时间: 2023-11-19 08:38:49 浏览: 99
使用CMake构建OpenCV项目过程解析
imwrite 是OpenCV中将图像写入到硬盘的函数,其使用规则为:
cv::imwrite(const string& filename, InputArray img, const vector<int>& params=vector<int>())
其中,filename 为保存图像的文件名(需要包含文件格式),img 为要保存的图像,params 为可选的保存参数,如压缩参数等。需要注意,保存的文件名需要包含文件格式后缀,否则无法正常保存。
希望以上回答能够帮到您。
阅读全文