-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
64 lines (43 loc) · 1.54 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/usr/bin/env python
from PIL import Image, ImageChops, ImageOps, ImageFilter
from thermalprinter import *
import picamera
def takePicture(f_out, size=(384, 384)):
camera = picamera.PiCamera()
camera.resolution = (1024, 768) # set resolution
camera.vflip = True # flip camera image vertically
camera.capture(f_out)
camera.close()
def crop(f_in, f_out, size=(80,80), pad=False):
image = Image.open(f_in)
image.thumbnail(size, Image.ANTIALIAS)
image_size = image.size
if pad:
thumb = image.crop( (0, 0, size[0], size[1]) )
offset_x = max( (size[0] - image_size[0]) / 2, 0 )
offset_y = max( (size[1] - image_size[1]) / 2, 0 )
thumb = ImageChops.offset(thumb, offset_x, offset_y)
else:
thumb = ImageOps.fit(image, size, Image.ANTIALIAS, (0.5, 0.5))
thumb.save(f_out)
def process(f_in, f_out):
image = Image.open(f_in)
(
image
.convert('L') # greyscale
.filter(ImageFilter.SHARPEN) # sharpen
.filter(ImageFilter.EDGE_ENHANCE) # enhance edges
.convert('1') # 1 bit dither
#.show() # show on screen
.save(f_out) # save to file
)
def printPhoto(f_in):
printer = Adafruit_Thermal('/dev/ttyAMA0', 19200, timeout=5)
printer.printImage(Image.open(f_in))
printer.feed(3) # eject that shit
def main():
takePicture('photo.jpg')
crop('photo.jpg', 'photo_cropped.jpg', size=(384, 384), pad=False)
process('photo_cropped.jpg', 'photo_processed.jpg')
printPhoto('photo_processed.jpg')
main()