qt使用opencv将mat数据保存为python的scipy.io.savemat的格式
时间: 2024-05-03 13:17:56 浏览: 139
Qt使用openCV
5星 · 资源好评率100%
可以使用OpenCV和SciPy中的函数来实现将Mat数据保存为Python的Scipy.io.savemat格式。下面是一个简单的示例代码:
```c++
#include <opencv2/opencv.hpp>
#include <iostream>
#include <fstream>
#include <vector>
#include <string>
#include <algorithm>
#include <numeric>
#include <cmath>
#include <cstdlib>
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <boost/filesystem.hpp>
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/json_parser.hpp>
#include <boost/algorithm/string.hpp>
#include "json.hpp"
using namespace std;
using namespace cv;
namespace pt = boost::property_tree;
using json = nlohmann::json;
int main(int argc, char** argv) {
// 读取Mat数据
Mat img = imread("test.jpg");
// 将Mat数据转换为数组形式
vector<int> img_data;
for(int i=0;i<img.rows;i++) {
for(int j=0;j<img.cols;j++) {
Vec3b pixel = img.at<Vec3b>(i, j);
img_data.push_back(pixel[0]);
img_data.push_back(pixel[1]);
img_data.push_back(pixel[2]);
}
}
// 定义保存数据的json对象
json data;
data["img"] = img_data;
// 将json对象保存为文件
ofstream out_file("test.mat");
out_file << data;
out_file.close();
return 0;
}
```
这个示例程序将OpenCV读取的图像数据转换为一个vector<int>形式的数组,然后将这个数组保存到一个json对象中,最后使用ofstream将这个json对象保存到文件中。由于Scipy.io.savemat格式也是以JSON格式保存数据的,所以这个程序可以将Mat数据保存为Scipy.io.savemat格式。
阅读全文