반응형
import cv2
cap = cv2.VideoCapture('testvideo.divx')
face_pattern = cv2.CascadeClassifier('haarcascade_frontalface_default.xml')
while True:
ret, frame = cap.read()
gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
faceList = face_pattern.detectMultiScale(gray, 1.5)
for (x, y, w, h) in faceList:
cv2.rectangle(frame, (x, y), (x+w, y+h), (0, 255, 0), 3)
cv2.imshow('image', frame)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
cap.release()
cv2.destroyAllWindows()
반응형
'Program > Python' 카테고리의 다른 글
file "/usr/bin/pip" line 9, in <module> (0) | 2018.07.03 |
---|---|
[OpenCV] face detection (0) | 2018.06.28 |
numpy 배열 쪼개기 (0) | 2018.01.05 |
2. python3 py파일 exe 실행파일 만들기 (0) | 2017.12.31 |
1. python3 py파일 exe 실행파일 만들기 (0) | 2017.12.31 |