简体   繁体   中英

Skimage: how to show image

I am novice at skimage and I try to show the image in my ipython notebook:\\

from skimage import data, io
coins = data.coins()
io.imshow(coins)

But I see only the following string:

<matplotlib.image.AxesImage at 0x7f8c9c0cc6d8>

Can anyboby explain how to show image right under the code like here: Correct output

Just add matplotlib.pyplot.show() after the io.imshow(coins) line.

from skimage import data, io
from matplotlib import pyplot as plt


coins = data.coins()
io.imshow(coins)
plt.show()

要显示挂起的图像,你需要io.show()以下io.imshow(coins)

images using skikit-image,matplotlib,SciPy,NumPy library

import os
# importing io from skimage 
import skimage
from skimage import io
# way to load image from file
file = os.path.join(skimage.data_dir, 'E:/img.jpg') 
myimg = io.imread(file) 
# way to show the input image 
io.imshow(myimg) 
io.show()

You can use skimage and matplotlib.pyplot as follows

from skimage import io, data  
from matplotlib import pyplot as plt

# get coin image
coin = data.coins()    

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

Just use matplotlib.pyplot.imshow() instead of io.imshow(coins).

from skimage import data.0
from matplotlib import pyplot as plt

coins = data.coins()
plt.imshow(coins)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM