将给定 URL 的 Jpeg 图像下载到 numpy 数组中

use*_*659 5 python url jpeg numpy image

使用 python,我想下载给定 URL 的 Jpeg 图像并将其存储在numpy数组中以便稍后处理。我应该使用什么库?

Jas*_*Lai 6

有许多库可用于此任务。我过去使用过的那个来自scikit-image

import skimage

image_filename = "http://example.com/example.jpg"
image_numpy = skimage.io.imread( image_filename )
Run Code Online (Sandbox Code Playgroud)