直径/nm SSIM PSNR 10 0.80109 16.7777 20 0.9757 34.9753 30 0.81207 24.2933 40 0.81838 23.3792生成两个折现图,一个以SSNR为纵坐标,一个以PSNR为纵坐标,横坐标为直径
时间: 2024-02-25 18:55:12 浏览: 120
好的,我可以使用 Python 的 Matplotlib 库来生成这些折线图。以下是生成这些图表的代码:
```python
import matplotlib.pyplot as plt
# 数据
diameters = [10, 20, 30, 40]
ssim = [0.80109, 0.9757, 0.81207, 0.81838]
psnr = [16.7777, 34.9753, 24.2933, 23.3792]
# 第一个折线图(SSIM)
plt.plot(diameters, ssim, '-o')
plt.xlabel('Diameter/nm')
plt.ylabel('SSIM')
plt.title('SSIM vs Diameter')
plt.show()
# 第二个折线图(PSNR)
plt.plot(diameters, psnr, '-o')
plt.xlabel('Diameter/nm')
plt.ylabel('PSNR')
plt.title('PSNR vs Diameter')
plt.show()
```
你可以将这些数据复制到 Python 文件中,运行代码并生成折线图。当然,你也可以将数据保存为 CSV 文件并在代码中读取它。
阅读全文