pytorch读取图片的两种方式

一、利用PIL读取

python 复制代码
from PIL import Image
img_path="data/train/ants_image/0013035.jpg"
img_PIL=Image.open(img_path)
print(type(img_PIL))

输出:

python 复制代码
<class 'PIL.JpegImagePlugin.JpegImageFile'>

二、利用opencv读取

python 复制代码
import cv2
img_path="data/train/ants_image/0013035.jpg"
img_array = cv2.imread(img_path)
print(type(img_array))

输出:

python 复制代码
<class 'numpy.ndarray'>
相关推荐
Mopes__1 小时前
Python | Leetcode Python题解之第517题超级洗衣机
python·leetcode·题解
雪兽软件1 小时前
人工智能和大数据如何改变企业?
大数据·人工智能
UMS攸信技术3 小时前
汽车电子行业数字化转型的实践与探索——以盈趣汽车电子为例
人工智能·汽车
测试老哥3 小时前
Python+Selenium+Pytest+POM自动化测试框架封装(完整版)
自动化测试·软件测试·python·selenium·测试工具·职场和发展·测试用例
ws2019073 小时前
聚焦汽车智能化与电动化︱AUTO TECH 2025 华南展,以展带会,已全面启动,与您相约11月广州!
大数据·人工智能·汽车
Ws_3 小时前
蓝桥杯 python day01 第一题
开发语言·python·蓝桥杯
神雕大侠mu4 小时前
函数式接口与回调函数实践
开发语言·python
堇舟4 小时前
斯皮尔曼相关(Spearman correlation)系数
人工智能·算法·机器学习
Y.O.U..4 小时前
STL学习-容器适配器
开发语言·c++·学习·stl·1024程序员节
爱写代码的小朋友4 小时前
使用 OpenCV 进行人脸检测
人工智能·opencv·计算机视觉