matlab图像边缘宽度调整
图像边缘宽度
单幅图像
原始方法
fig=figure;
plot(peaks)
saveas(fig,'plot_original.png');
改善方法
fig = figure;
plot(peaks)
ax = gca;
outerpos = ax.OuterPosition;
ti = ax.TightInset;
left = outerpos(1) + ti(1);
bottom = outerpos(2) + ti(2);
ax_width =...
原创
2021-08-02 21:54:40 ·
1590 阅读 ·
0 评论