-
Notifications
You must be signed in to change notification settings - Fork 2
/
camera.py
executable file
·31 lines (22 loc) · 1.02 KB
/
camera.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
import os
from PIL import Image
class Camera():
def __init__(self, img_width=128, img_height=96, img_rot=0):
self.value = None
self.img_width = img_width
self.img_height = img_height
self.img_rot = img_rot
def get_value(self): return self.value
def update(self):
self.sensor_get_value()
return self.value
def reset(self):
self.value = None
def sensor_get_value(self):
# This is a OS call that takes a image and makes it accessible to PIL operations in the same directory
os.system('raspistill -t 1 -o image.png -w "' + str(self.img_width) + '" -h "' + str(self.img_height) + '" -rot "' + str(self.img_rot) + '"')
# Open the image just taken by raspicam
# Stores the RGB array in the value field
self.value = Image.open('image.png').convert('RGB')
# Just testing the camera in python
# os.system('raspistill -t 1 -o image.png -w "' + str(200) + '" -h "' + str(200) + '" -rot "' + str(0) + '"')