Implemented the Python part

This commit is contained in:
esimov
2019-10-30 15:05:35 +02:00
parent 0239a7f5a2
commit f61761eb9b

View File

@@ -13,6 +13,8 @@ os.system('rm talkdet.so')
MAX_NDETS = 2024
ARRAY_DIM = 6
MOUTH_AR_THRESH = 0.2
# define class GoPixelSlice to map to:
# C type struct { void *data; GoInt len; GoInt cap; }
class GoPixelSlice(Structure):
@@ -71,23 +73,21 @@ while(True):
if dets is not None:
# We know that the detected faces are taking place in the first positions of the multidimensional array.
for det in dets:
if det[3] > 50:
if det[4] == 0: # 0 == face;
for row, col, scale, q, det_type, mouth_ar in dets:
if q > 50:
if det_type == 0: # 0 == face;
if showFaceDet:
cv2.rectangle(frame,
(int(det[1])-int(det[2]/2), int(det[0])-int(det[2]/2)),
(int(det[1])+int(det[2]/2), int(det[0])+int(det[2]/2)),
(0, 0, 255), 2
)
elif det[4] == 1: # 1 == pupil;
cv2.rectangle(frame, (col-scale/2, row-scale/2), (col+scale/2, row+scale/2), (0, 0, 255), 2)
elif det_type == 1: # 1 == pupil;
if showPupil:
cv2.circle(frame, (int(det[1]), int(det[0])), 4, (0, 0, 255), -1, 8, 0)
elif det[4] == 2: # 2 == facial landmark;
cv2.circle(frame, (int(col), int(row)), 4, (0, 0, 255), -1, 8, 0)
elif det_type == 2: # 2 == facial landmark;
if showLandmarkPoints:
cv2.circle(frame, (int(det[1]), int(det[0])), 4, (0, 255, 0), -1, 8, 0)
elif det[4] == 3:
print(det[5])
cv2.circle(frame, (int(col), int(row)), 4, (0, 255, 0), -1, 8, 0)
elif det_type == 3:
if mouth_ar < MOUTH_AR_THRESH: # mouth is open
cv2.putText(frame, "TALKING!", (10, 30),
cv2.FONT_HERSHEY_SIMPLEX, 0.7, (0, 0, 255), 2)
cv2.imshow('', frame)