Skip to content

Instantly share code, notes, and snippets.

@nngogol
Created May 22, 2017 10:37
Show Gist options
  • Save nngogol/29d8bd5784ef766e44bccb0973ad3c77 to your computer and use it in GitHub Desktop.
Save nngogol/29d8bd5784ef766e44bccb0973ad3c77 to your computer and use it in GitHub Desktop.
import numpy as np
from PIL import Image
import os
# РАБОТАЕТ !!!!!!!!!
os.chdir(r'path to ya folder')
list_im = [file for file in os.listdir()]
imgs = [ Image.open(i) for i in list_im ]
# pick the image which is the smallest, and resize the others to match it (can be arbitrary image shape here)
min_shape = sorted( [(np.sum(i.size), i.size ) for i in imgs])[0][1]
imgs_comb = np.hstack( (np.asarray( i.resize(min_shape) ) for i in imgs ) )
# save that beautiful picture
imgs_comb = Image.fromarray( imgs_comb)
imgs_comb.save( 'testttttttt.jpg' )
# for a vertical stacking it is simple: use vstack
imgs_comb = np.vstack( (np.asarray( i.resize(min_shape) ) for i in imgs ) )
imgs_comb = Image.fromarray( imgs_comb)
imgs_comb.save( os.path.join( os.getcwd(), 'testt final.jpg') )
@nngogol
Copy link
Author

nngogol commented May 22, 2017

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