Skip to content

Instantly share code, notes, and snippets.

@yunsu3042
Created November 17, 2016 13:03
Show Gist options
  • Save yunsu3042/a4113067f9e88adbaf60d6d059d4885d to your computer and use it in GitHub Desktop.
Save yunsu3042/a4113067f9e88adbaf60d6d059d4885d to your computer and use it in GitHub Desktop.
#배열을 다시 이미지화 하는 과정
import numpy as np
def numpy_array_to_image(numpy_array)
img = Image.fromarray(numpy_array)
return img
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment