0

Hi, I'm trying to display multiple images in jupyter's iPython's notebook. I'm using skimage.io.imshow() function to display each of it. I don't want to use skimage.io.imshow_collection() beacause it displays image with a smaller resolution

This is my code:

io.imshow(x_i)
io.imshow(z_i_norm)
io.imshow(x_prime_i_norm)
io.imshow(y_i)

This is the result: result

enter image description here

I'm expecting to display all images in just one output box

Thanks

SherylHohman
  • 16,580
  • 17
  • 88
  • 94
  • 1
    Jupyter just displays the result of the final comment executed in a cell. So `io.imshow` doesn't really "show" anything, but rather returns data which Jupyter knows how to show. So you can't chain them like that. Maybe this helps? https://stackoverflow.com/q/17111525 – ctrueden Dec 03 '17 at 17:36
  • Thanks, the link that you provide me was useful for me, but finally I applied the last solution given in this link https://stackoverflow.com/questions/19471814/display-multiple-images-in-one-ipython-notebook-cell/27795087 – Eduardo Durán Fuentes Dec 04 '17 at 10:45

0 Answers0