深度学习中图片的三种格式

PIL(python image library)

img = Image.open(path) #读入图片创建PIL对象

numpy

img = cv2.imread(path) #创建numpy对象

tensor

你可能感兴趣的:(深度学习,深度学习,python)