Organize folders, add notebook readme

This commit is contained in:
Marina von Steinkirch 2016-08-14 10:10:38 -07:00
parent 9b583d313c
commit da1b22cf4a
21 changed files with 18 additions and 6 deletions

View file

@ -1,13 +0,0 @@
#!/usr/bin/env python
""" Create dream """
IMAGE_TO_DREAM = "saturn.jpg"
IMAGE_TO_DREAM_OUTPUT = "dream.jpg"
bc = BatCountry(IMAGE_TO_DREAM)
image = bc.dream(np.float32(Image.open())
bc.cleanup()
result = Image.fromarray(np.uint8(image))
result.save(IMAGE_TO_DREAM_OUTPUT)