C++中画个图还是比较麻烦,每次都是先保存数据然后用python画
//将变量trans_gray保存到txt
//每行一个数据
std::ofstream ofs;
ofs.open("savevar.txt", std::ios::out);
for (auto it = trans_gray.begin(); it != trans_gray.end(); it++)
{
ofs << (*it) << endl;
}
ofs.close();
import matplotlib.pyplot as plt #绘图模块
import numpy as np #数值计算模块
file = r'savevar.txt'
a = np.loadtxt(file)
plt.figure()
plt.plot(a,'-',color='red') #定义样式
plt.xlabel('随便') #横坐标含义
plt.ylabel('随便') #纵坐标含义
plt.title('随便') #图名(若附中文名称需导入并定义中文模块matplotlib.font_manager)
plt.show()