在jupyter notebook(python)中防止matplotlib输出

问题描述 投票:0回答:1

我尝试使用以下代码使用python和matplotlib渲染数百个图像:

def render_state(np_data_array):
    filename = "render/fig_" + str(i) + ".png"

    fig = plt.figure(figsize = (12,12) )
    aa = fig.add_subplot(111)
    aa.imshow(np_data_array,cmap='gray')

    fig.savefig(filename)

不幸的是,matplotlib也将所有内容渲染到了jupyter笔记本中。有没有办法阻止matplotlib的任何输出?我真的找不到方法,互联网上的大多数答案只是说不使用plt.show()我甚至不使用

python matplotlib
1个回答
0
投票

qazxsw poi作为细胞的第一行就像魅力一样!感谢认真的重要性

© www.soinside.com 2019 - 2024. All rights reserved.