1. 程式人生 > >matplotlib顯示不出圖片的問題?

matplotlib顯示不出圖片的問題?

問題:

使用jupyter編寫程式時,使用程式碼可以顯出出圖片 程式碼如下:

import matplotlib.pyplot as plt
import matplotlib.image as mpimg

import numpy as np
import cv2

%matplotlib inline
# Read in the image
image = mpimg.imread('images/car_green_screen.jpg')

# Print out the image dimensions (height, width, and depth (color))
print('Image dimensions:', image.shape)

# Display the image
plt.imshow(image)

但是使用Anaconda卻無法顯示圖片 即無法呼叫matplotlib函式。

解決方案

加入 plt.show() 

具體程式碼如下:

import matplotlib.pyplot as plt 
import matplotlib.pyplot as mping 

import sys
import numpy as np 
import cv2

## read in the image
image = mping.imread('images/car_green_screen.jpg')

#print out image dimensions (height,width, and depth(color))

print('image dimensions:',image.shape)

#display the image
plt.imshow(image)
plt.show()