2020-10-12 20:15:18 +00:00
|
|
|
import cv2
|
2020-10-14 14:10:37 +00:00
|
|
|
import numpy as np
|
2020-10-03 01:26:03 +00:00
|
|
|
|
2020-10-12 20:59:52 +00:00
|
|
|
import sys,os,numpy
|
|
|
|
from glob import glob
|
2020-10-12 20:15:18 +00:00
|
|
|
from skimage import io
|
2020-10-03 01:26:03 +00:00
|
|
|
|
2020-10-12 20:15:18 +00:00
|
|
|
#read test photo
|
2020-10-12 20:59:52 +00:00
|
|
|
pwd = sys.path[0]
|
2020-10-28 22:54:02 +00:00
|
|
|
img = cv2.imread(pwd + "/Facial_test_images/6.jpg")
|
2020-10-03 01:26:03 +00:00
|
|
|
|
2020-10-12 20:15:18 +00:00
|
|
|
grey = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
|
2020-10-03 01:26:03 +00:00
|
|
|
|
2020-10-28 22:54:02 +00:00
|
|
|
resize_fx = 1
|
|
|
|
resize_fy = 1
|
|
|
|
|
|
|
|
grey = cv2.resize(grey, dsize=None, fx=resize_fx, fy=resize_fy, interpolation = cv2.INTER_AREA)
|
|
|
|
|
|
|
|
|
2020-10-12 20:59:52 +00:00
|
|
|
classfier = cv2.CascadeClassifier(pwd + "/Facial_models/haarcascade_frontalface_alt2.xml")
|
2020-10-03 01:26:03 +00:00
|
|
|
|
2020-10-28 22:54:02 +00:00
|
|
|
faceRects = classfier.detectMultiScale(grey, scaleFactor=1.2, minNeighbors=1, minSize=(16, 16))
|
2020-10-03 01:26:03 +00:00
|
|
|
|
2020-10-28 22:54:02 +00:00
|
|
|
color = (0, 255, 0)
|
2020-10-12 20:15:18 +00:00
|
|
|
if len(faceRects) > 0:
|
|
|
|
for faceRect in faceRects:
|
2020-10-28 22:54:02 +00:00
|
|
|
x, y, w, h = faceRect
|
|
|
|
x = int(x/resize_fx)
|
|
|
|
y = int(y/resize_fy)
|
|
|
|
w = int(w/resize_fx)
|
|
|
|
h = int(h/resize_fy)
|
|
|
|
cv2.rectangle(img, (x - 10, y - 10), (x + w + 10, y + h + 10), color, 5)
|
|
|
|
|
|
|
|
cv2.imwrite(pwd + "/Facial_test_images/output-a.jpg",img)
|
|
|
|
cv2.imshow("face_image_a",img)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
image = cv2.imread(pwd + "/Facial_test_images/6.jpg")
|
|
|
|
|
|
|
|
net = cv2.dnn.readNetFromCaffe(pwd+"/Facial_models/deploy.prototxt", pwd+"/Facial_models/res10_300x300_ssd_iter_140000_fp16.caffemodel")
|
|
|
|
|
|
|
|
blob = cv2.dnn.blobFromImage(cv2.resize(image, (300, 300)), 1.0, (300, 300), (104.0, 177.0, 123.0))
|
|
|
|
|
|
|
|
net.setInput(blob)
|
|
|
|
|
|
|
|
detections = net.forward()
|
|
|
|
|
|
|
|
h,w,c=image.shape
|
|
|
|
for i in range(0, detections.shape[2]):
|
|
|
|
confidence = detections[0, 0, i, 2]
|
|
|
|
if confidence > 0.65:
|
|
|
|
box = detections[0, 0, i, 3:7] * np.array([w, h, w, h])
|
|
|
|
(startX, startY, endX, endY) = box.astype("int")
|
|
|
|
text = "{:.2f}%".format(confidence * 100)
|
|
|
|
y = startY - 10 if startY - 10 > 10 else startY + 10
|
|
|
|
cv2.rectangle(image, (startX, startY), (endX, endY),(0, 255,0), 5)
|
|
|
|
cv2.putText(image, text, (startX, y), cv2.FONT_HERSHEY_SIMPLEX, 1.00, (0, 255, 0), 3)
|
2020-10-03 01:26:03 +00:00
|
|
|
|
2020-10-28 22:54:02 +00:00
|
|
|
cv2.imwrite(pwd + "/Facial_test_images/output-b.jpg", image)
|
|
|
|
cv2.imshow("face_image_b",image)
|
|
|
|
cv2.waitKey(0)
|