在Bokeh(Python)中插入RGBA图片?

时间:2016-06-23 10:17:12

标签: python matplotlib bokeh

我想插入一张图片作为散景图的背景。我使用image_rgbaimage_url解决方案将1280 * 800 png文件转换为建议here的RGBA数组,但渲染需要几分钟而.html输出会导致浏览器崩溃。

这是我的代码:

import matplotlib.image as mpimg
from bokeh.plotting import figure, show, output_file
output_file('output.html')

img = mpimg.imread('image.png')
p = figure()
p.image_rgba(image=[img], x=[0], y=[799])
show(p)

这是否有资格作为错误或我在这里遗漏了什么?

0 个答案:

没有答案