Skip to content

Instantly share code, notes, and snippets.

@lebedov
Last active August 4, 2020 16:50
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save lebedov/7018889ba47668c64bcf96aee82caec0 to your computer and use it in GitHub Desktop.
Save lebedov/7018889ba47668c64bcf96aee82caec0 to your computer and use it in GitHub Desktop.
Display a grid of thumbnails.
#!/usr/bin/env python
"""
Display a grid of thumbnails.
"""
import matplotlib.pyplot as plt
from mpl_toolkits.axes_grid1 import ImageGrid
import numpy as np
import PIL
def thumb_grid(im_list, grid_shape, scale=0.1, axes_pad=0.07):
"""
Display the specified PIL images in a grid.
Parameters
----------
im_list : list of numpy.ndarray instances
Bitmaps to display.
grid_shape : tuple
Grid shape.
scale : float
Scaling factor; 1 is 100%.
axes_pad : float or (float, float)
Padding between axes, in inches.
"""
# Grid must be 2D:
assert len(grid_shape) == 2
# Make sure all images can fit in grid:
assert np.prod(grid_shape) >= len(im_list)
grid = ImageGrid(plt.gcf(), 111, grid_shape, axes_pad=axes_pad)
for i, data in enumerate(im_list):
# Scale image:
im = PIL.Image.fromarray(data)
thumb_shape = [int(scale*j) for j in im.size]
im.thumbnail(thumb_shape, PIL.Image.ANTIALIAS)
data_thumb = np.array(im)
grid[i].imshow(data_thumb)
# Turn off axes:
grid[i].axes.get_xaxis().set_visible(False)
grid[i].axes.get_yaxis().set_visible(False)
if __name__ == '__main__':
import requests
r = requests.get('https://upload.wikimedia.org/wikipedia/commons/7/79/Hilbert.jpg',
stream=True)
im = np.array(PIL.Image.open(r.raw))
N = 16
im_list = [im for i in range(N)]
thumb_grid(im_list, (4, 4))
plt.show()
@sylvainma
Copy link

Line 20: for i in range(N):
Should be: for i in range(len(im_list)):

It works as long as N is in the if name == 'main', otherwise N in undefined in the the function

@lebedov
Copy link
Author

lebedov commented Mar 31, 2020

Line 20: for i in range(N):
Should be: for i in range(len(im_list)):

It works as long as N is in the if name == 'main', otherwise N in undefined in the the function

Fixed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment