Skip to content

Instantly share code, notes, and snippets.

@StrikingLoo
Created June 12, 2019 16:42
Show Gist options
  • Select an option

  • Save StrikingLoo/23517576cec26bee2fa3d5b572c7eee7 to your computer and use it in GitHub Desktop.

Select an option

Save StrikingLoo/23517576cec26bee2fa3d5b572c7eee7 to your computer and use it in GitHub Desktop.
IMG_SIZE = (94, 125)
def pixels_from_path(file_path):
im = Image.open(file_path)
im = im.resize(IMG_SIZE)
np_im = np.array(im)
#matrix of pixel RGB values
return np_im
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment