MPPL3:图像模糊

时间:2019-09-01 11:49:04

标签: matplotlib mpld3

我创建了一个matplotlib图形(服务器上为matplotlib),并使用mpld3.draw_figure显示它(客户端上为nodejs),仅显示模糊的图像,类似于此处的图像:

How to 'turn off' blurry effect of imshow() in matplotlib?

key

插值设置“最近”,“无”没有任何改变:

        mpld3.draw_figure(`chartBox-${round}`,chart,false,true)

我假设它有一些内插问题...也许还有0.5位移,所以网格点1-> 1.5然后被插值。

1 个答案:

答案 0 :(得分:0)

首先切换回matplotlib 1.5.1,然后

mpl.use('Agg')

解决了

请参阅此处: Generating a PNG with matplotlib when DISPLAY is undefined