python读取image

时间:2025-02-09 09:56:26

python 读取image

在python中我们有两个库可以处理图像文件,scipymatplotlib.

安装库

pip install matplotlib pillow scipy

用法

from  import imread
data = imread(image_root)
#data是 ndarray对象
import  as mpimg
data = (image_root)
#data是 ndarray对象

skimage

安装 pip install -U scikit-image

from  import imread
img = imread(file_path) # 返回的是 ndarray
# 这里需要注意的是
# imread 读取 8-bit png 的时候莫名奇妙的读出个 3-channel 的图片
# from  import imread 这个 imread 也是一个尿性

PIL

安装 pip install pillow

from PIL import Image
import numpy as np
img_obj = (file_path)
img_array = (img_obj, dtype=np.uint8)

# 无论是 jpg 还是 png 都能正确读取

matplotlib

安装 pip install matplotlib

from  import imread
img = imread(img_path) # 返回 ndarray
# 这个imread 读 png 的时候,返回ndarray 的类型是 uint8
# 读 png 的时候,返回 ndarray 是 float32, 8-bit png 也能读出 3-channel,活在梦里