如何在jupyter中并排显示两个本地图像?
How to display two local images side by side in jupyter?
我想显示两张图像,我将它们保存在本地,在一个单独的 makedown 单元格中并排?我发现以前的 但它使用 HTML()
而不是 Image()
方法。
我试过的方法是:
from IPython.core.display import Image, display
display(Image('/whateverfile/counts1.png',width=100,height=100), Image('/whateverfile/counts2',width=100, height=100))
但这没有用。
有什么解决办法吗?
谢谢
from IPython.display import HTML, display
display(HTML("<table><tr><td><img src='/image/counts1.png'></td><td><img src='/image/counts2'></td></tr></table>"))
其他参数随意设置。
或者使用 nbextensions 并将单元分成两部分(并排有 2 个输出)可以满足您的需要?
我想显示两张图像,我将它们保存在本地,在一个单独的 makedown 单元格中并排?我发现以前的 HTML()
而不是 Image()
方法。
我试过的方法是:
from IPython.core.display import Image, display
display(Image('/whateverfile/counts1.png',width=100,height=100), Image('/whateverfile/counts2',width=100, height=100))
但这没有用。
有什么解决办法吗?
谢谢
from IPython.display import HTML, display
display(HTML("<table><tr><td><img src='/image/counts1.png'></td><td><img src='/image/counts2'></td></tr></table>"))
其他参数随意设置。
或者使用 nbextensions 并将单元分成两部分(并排有 2 个输出)可以满足您的需要?