summaryrefslogtreecommitdiffstats
path: root/demos
diff options
context:
space:
mode:
Diffstat (limited to 'demos')
-rw-r--r--demos/data/binary_save.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/demos/data/binary_save.py b/demos/data/binary_save.py
index 3fb2162..06b5eb2 100644
--- a/demos/data/binary_save.py
+++ b/demos/data/binary_save.py
@@ -1,9 +1,9 @@
import numpy as np
-outfile = open('my_file.bin', 'wb') # Open a file for binary write
-outfile.write(im) # Write it
+outfile = open('test_imageLena.bin', 'wb') # Open a file for binary write
+outfile.write(Im) # Write it
outfile.flush() # Optional but a good idea
outfile.close()
-
+#%%
# Define width and height
w, h = 256, 256
# Read file using numpy "fromfile()"