论文编写时需要考虑图像的清晰度,如果用latex,生成eps文件是个好的方法。
有两个简单方法可以生成eps图像。
方法1: python plt方法生成
import cv2
a = cv2.imread('filename.png')
plt.imshow(a)
plt.savefig('a.eps', format='eps', dpi=1000)
方法2: 在线网站,在线转换。
网站链接: https://cloudconvert.com/png-to-eps
操作步骤: 上传png图像,点击转换按钮,转换成后下载。
————————————————————————————————
原文链接:https://blog.csdn.net/weixin_41068770/article/details/106296569