我正试图在我的jupyter笔记本上从我的计算机加载图像。我已经在网络和stackoverflow中搜索并获得了下面提到的一些代码
##method1(in code cell)
from IPython.display import Image
Image('imagepath.jpg')
##method2(in code cell)
from IPython.display import Image
Image(filename=('imagepath.jpg'))
method3(in markdown cell)
![title]('imagepath.png')
当我在其他帖子中看到答案时,它会对某些用户起作用。 但这些方法都不适合我。任何人都可以解释这件事吗? P.S-我可以通过互联网上的图像网址加载图像。