implement get_image in new camera module
This commit is contained in:
parent
7558c6d196
commit
c13cb3355e
1 changed files with 6 additions and 0 deletions
|
@ -6,6 +6,7 @@ import subprocess
|
|||
import signal
|
||||
|
||||
from enum import Enum
|
||||
from PIL import Image
|
||||
from phytopi import db, models, app
|
||||
|
||||
class CameraActionError(Exception):
|
||||
|
@ -68,4 +69,9 @@ class CameraWorker(object):
|
|||
self.status == CameraStatus.IDLE
|
||||
else:
|
||||
raise CameraActionError('Camera neither idle nor in timelapse mode!')
|
||||
|
||||
def get_frame(self, thumbnail=False):
|
||||
img = Image.open('/dev/shm/mjpeg/cam.jpg')
|
||||
return img
|
||||
|
||||
|
Loading…
Add table
Reference in a new issue