如何在matplotlib.pyplot中隐藏轴

时间:2016-10-19 01:56:44

标签: python numpy matplotlib

我将图像放在(0, 100, 200...)数组中,并使用以下代码绘制它。如何告诉程序不要绘制轴,例如import matplotlib.pyplot as plt plt.figure() plt.imshow(output_ndarray) plt.savefig(output_png)

   <blink>
    log4j.rootLogger=DEBUG, stdout, file
    log4j.appender.file=org.apache.log4j.RollingFileAppender
    log4j.appender.file.File=C:\\Sample\\ab.log 
    log4j.appender.MaxFileSize=5MB
    log4j.appender.MaxBackupIndex=10
    log4j.appender.file.layout=org.apache.log4j.PatternLayout
    log4j.appender.file.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss}
    </blink>

aflw picture

2 个答案:

答案 0 :(得分:6)

enter image description here你也可以使用......

plt.axis('off')

enter image description here

答案 1 :(得分:2)