Pillow/Sane/demo_numarray.py

42 lines
1.0 KiB
Python
Raw Normal View History

2010-07-31 06:52:47 +04:00
#!/usr/bin/env python
#
# Shows how to scan a 16 bit grayscale image into a numarray object
#
from __future__ import print_function
2010-07-31 06:52:47 +04:00
# Get the path set up to find PIL modules if not installed yet:
import sys ; sys.path.append('../PIL')
from numarray import *
import sane
import Image
def toImage(arr):
if arr.type().bytes == 1:
# need to swap coordinates btw array and image (with [::-1])
im = Image.frombytes('L', arr.shape[::-1], arr.tostring())
2010-07-31 06:52:47 +04:00
else:
arr_c = arr - arr.min()
arr_c *= (255./arr_c.max())
arr = arr_c.astype(UInt8)
# need to swap coordinates btw array and image (with [::-1])
im = Image.frombytes('L', arr.shape[::-1], arr.tostring())
2010-07-31 06:52:47 +04:00
return im
print('SANE version:', sane.init())
print('Available devices=', sane.get_devices())
2010-07-31 06:52:47 +04:00
s = sane.open(sane.get_devices()[0][0])
# Set scan parameters
s.mode = 'gray'
s.br_x=320. ; s.br_y=240.
print('Device parameters:', s.get_parameters())
2010-07-31 06:52:47 +04:00
s.depth=16
arr16 = s.arr_scan()
toImage(arr16).show()