matplotlib更改jpg图像颜色

时间:2017-02-25 12:10:06

标签: python python-3.x matplotlib

我正在使用matplotlib imread函数从文件系统中读取图像。但是,它会在显示这些图像时更改jpg图像颜色。 [Python 3.5,Anaconda3 4.3,matplotlib2.0]

# reading 5 color images of size 32x32
imgs_path = 'test_images'
test_imgs = np.empty((5,32,32,3), dtype=float)
img_names = os.listdir('test_images'+'/')
for i, img_name in enumerate(img_names):
    #reading in an image
    image = mpimg.imread(imgs_path+'/'+img_name)
    test_imgs[i] = image

#Visualize new raw images
plt.figure(figsize=(12, 7.5))
for i in range(5):
    plt.subplot(11, 4, i+1)
    plt.imshow(test_imgs[i]) 
    plt.title(i)
    plt.axis('off')
plt.show()

它为所有图像添加蓝色/绿色色调。我正在做的任何错误?

2 个答案:

答案 0 :(得分:2)

matplotlib.image.imreadmatplotlib.pyplot.imread将图像读取为无符号整数数组 然后,您将其隐含地转换为float

matplotlib.pyplot.imshow以不同的方式解释两种格式的数组。

  • float数组在0.0(无颜色)和1.0(全彩色)之间进行解释。
  • 整数数组在0255之间进行解释。

你有两个选择:

  1. 使用整数数组

    test_imgs = np.empty((5,32,32,3), dtype=np.uint8)
    
  2. 将数组除以255.在绘图之前:

    test_imgs = test_imgs/255.
    

答案 1 :(得分:0)

Matplotlib读取RGB格式的图像,而如果使用opencv,它将读取BGR格式的图像。 首先将您的.jpg图像转换为RGB,然后尝试显示它。 它对我有用。