¿Cómo trabajo con imágenes en Bokeh (Python)

Por ejemplo, puede trazar una imagen en matplotlib usando este código:

%matplotlib inline
import matplotlib.pyplot as plt
import matplotlib.image as mpimg
img=mpimg.imread('image.png')
plt.imshow(img)

¿Es posible algo así con Bokeh (0.10)?