在 Google Colab 中使用 imread 打开图像时出现问题
Problem opening an image using imread with Google Colab
我正在尝试学习《深度学习傻瓜书》一书中的教程。
我在尝试打开我在 Google Colab 上下载的图像(使用 imread)时收到错误消息。
错误信息:
OSError: Cannot seek back after getting firstbytes!
Here is the code on Google Colab;我确定这是一件微不足道的事情,但我不确定错误来自哪里。任何帮助表示赞赏
来自 skimage.io 文档 here:
我们可以看到 imread() 的参数必须是文件名的字符串而不是对象(如 archive.open(filename)
)
我正在尝试学习《深度学习傻瓜书》一书中的教程。
我在尝试打开我在 Google Colab 上下载的图像(使用 imread)时收到错误消息。
错误信息:
OSError: Cannot seek back after getting firstbytes!
Here is the code on Google Colab;我确定这是一件微不足道的事情,但我不确定错误来自哪里。任何帮助表示赞赏
来自 skimage.io 文档 here:
archive.open(filename)
)