在 IJulia 中使用 for 循环时如何显示图像?

How to display images when using for loop in IJulia?

我想使用 Image.jl 在 Jupyter 中显示图像。 doc 说:

If you're using the IJulia notebook, images will be displayed automatically.

Julia code for the display of images can be found in ImageView. Installation of this package is recommended but not required.

但我没能找到任何在 for 循环中自动显示图像的方法。下面的代码是一个例子:

using Images

for i=1:10
    convert(Image,rand(100,100))
end

我想在 IJulia 中存在一个未记录的函数来绘制图像,可以显式调用它来显示那些隐藏的结果。提前致谢! @tholy

您需要使用 IJulia 使用的 display 函数,您可以在 Julia 手册的 Multimedia I/O 部分找到它的文档。