WIP: add multi-version support

Beter Init function
This commit is contained in:
hesham 2019-01-22 20:25:08 +03:00 committed by HeshamTB
parent 83de5c2894
commit 617bb779c0

65
main.py
View File

@ -14,38 +14,44 @@ try:
from picamera import PiCamera from picamera import PiCamera
from picamera.array import PiRGBArray from picamera.array import PiRGBArray
piCamAvailable = True piCamAvailable = True
except Exception as ex: except Exception as ex:
print('[ Error ] some depandincies are missing\n'+ str(ex.args)) print('[ Error ] some depandincies are missing\n'+ str(ex.args))
piCamAvailable = False; piCamAvailable = False;
try: try:
import cv2 import cv2
except Exception as ex: except Exception as ex:
print('Could not load OpenCV\Closing') print('Could not load OpenCV\Closing')
sys.exit() sys.exit()
def init(): def init():
go = True go = True
piCam = False
WebCam = False WebCam = False
print('Initilizing..') print('Initilizing Camera ..')
try: if piCamAvailable:
camera = PiCamera() try:
camera.resolution = (640, 480) camera = PiCamera()
sleep(0.2) camera.resolution = (640, 480)
print('[ OK ] Camera') go = True
except: piCam = True
print('[ Error ] Can not initialize PiCamera\Trying webcam..') print('[ OK ] Started PiCamera')
go = False except:
print('[ Warning ] Could not start PiCamera. Trying Webcam.. ')
piCam = False
go = False
else:
try: try:
camera = cv2.VideoCapture() camera = cv2.VideoCapture()
print('[ OK ] WebCamera') print('[ OK ] WebCamera')
go = True go = True
WebCam = True WebCam = True
except Exception as ex: except Exception as ex:
print(ex.args) print('[ Error ] Could not start Webcam.. \nExiting')
go = False go = False
sleep(0.2)
try: try:
face_cascade = cv2.CascadeClassifier('haarcascade_frontalface_default.xml') face_cascade = cv2.CascadeClassifier('haarcascade_frontalface_default.xml')
sleep(1) sleep(1)
@ -53,25 +59,32 @@ def init():
except: except:
print('[ Error ] Can not load cascade File') print('[ Error ] Can not load cascade File')
go = False go = False
try: try:
os.mkdir('unknown') os.mkdir('unknown')
except OSError as ex: except OSError as ex:
print('Found (unknown) folder') print('Found (unknown) folder')
if (go): if go:
print('Starting Photo loop..') print('Starting Photo loop..')
print('Known people are '+str(loadNames())) print('Known people are '+str(loadNames()))
start(camera, face_cascade, WebCam) start(camera, face_cascade, WebCam)
else: else:
print('closing') print('closing')
def start( camera, face_cascade, WebCam): def start( camera, face_cascade, WebCam):
j = 0 j = 0
if not WebCam: if not WebCam:
rawCapture = PiRGBArray(camera) rawCapture = PiRGBArray(camera)
face_recognizer = cv2.face.LBPHFaceRecognizer_create() #cv2.face.createLBPHFaceRecognizer() # face_recognizer = cv2.face.LBPHFaceRecognizer_create() #cv2.face.createLBPHFaceRecognizer()
face_recognizer.load('faces/h') face_recognizer = cv2.face_LBPHFaceRecognizer('faces/h')
# face_recognizer.read('faces/h') # Try on Pi
##WIP
try:
face_recognizer.load('faces/h')
except:
pass
names = loadNames() names = loadNames()
while 1: while 1:
try: try:
@ -110,16 +123,16 @@ def start( camera, face_cascade, WebCam):
else: else:
print('Found '+person) print('Found '+person)
OpenShifter() OpenShifter()
cv2.imshow('image',img) cv2.imshow('image',img)
cv2.waitKey(1) cv2.waitKey(1)
rawCapture.truncate(0) rawCapture.truncate(0)
if cv2.waitKey(1) & 0xFF == ord('q'): if cv2.waitKey(1) & 0xFF == ord('q'):
cv2.destroyAllWindows() cv2.destroyAllWindows()
break break
def recognize(image,face_recognizer, names): def recognize(image,face_recognizer, names):
try: try:
img = image.copy() img = image.copy()
label= face_recognizer.predict(img) label= face_recognizer.predict(img)
@ -131,7 +144,7 @@ def recognize(image,face_recognizer, names):
else: else:
print(str(label) + ' >>'+names[label[0]]) print(str(label) + ' >>'+names[label[0]])
return names[label[0]] return names[label[0]]
def OpenShifter(): def OpenShifter():
try: try:
ser = serial.Serial('/dev/ttyUSB0',9600) ser = serial.Serial('/dev/ttyUSB0',9600)
@ -147,7 +160,7 @@ def OpenShifter():
ser.close() ser.close()
except: except:
print('[ Error ] Can not connect to Arduino at /dev/ttyUSB1 ..') print('[ Error ] Can not connect to Arduino at /dev/ttyUSB1 ..')
def loadNames(): def loadNames():
try: try:
with open("faces/names.json", "r") as read_file: with open("faces/names.json", "r") as read_file: