Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不想使用生成的图和图表,而是想使用现有图片对它们进行图像处理。在sage一篇中写道:
sage
from pylab import imread image = imread(DATA+"image.png")
官方帮助介绍对此任务/用例/问题保持沉默。
在谷歌搜索并尝试了 30 分钟后,我发现这实际上很简单。
笔记本对启动它的文件夹具有文件访问权限。因此,如果在自己的home文件夹中启动它,则可以直接访问该文件home夹中的所有文件。
home
from pylab import imread image = imread("image.png")