Python 打开网络图片

使用requests

import requests
from PIL import Image
from io import BytesIO

response = requests.get(img_src)
image = Image.open(BytesIO(response.content))
image.show()

使用skimage
安装 pip install scikit-image

from skimage import io
import matplotlib.pylot as plt

image = io.imread(img_src)
plt.imshow(image)
plt.axis('off')
plt.show()
赞(0)
版权声明:本文采用知识共享 署名4.0国际许可协议 [BY-NC-SA] 进行授权,转载请注明出处。
文章名称:《Python 打开网络图片》
文章来自:泰恩数据
文章链接:https://tyne.cc/1075.html
本站资源仅供个人学习使用,请勿用于商业用途。

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址