-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelloOpenCV.py
More file actions
38 lines (31 loc) · 1.13 KB
/
helloOpenCV.py
File metadata and controls
38 lines (31 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import cv2
import sys
# 사진과 얼굴의 어떤 부분을 인식할까요?
imagePath = sys.argv[1]
cascPath = "haarcascade_frontalface_default.xml"
# haar cascade를 결정합니다
faceCascade = cv2.CascadeClassifier(cascPath)
# 이미지를 읽어와 흑백사진으로 전환합니다
image = cv2.imread(imagePath)
gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
# 흑백사진 상태에서 얼굴을 탐지합니다
faces = faceCascade.detectMultiScale(
gray,
scaleFactor=1.1,
minNeighbors=10,
minSize=(30, 30)
# flags = cv2.cv.CV_HAAR_SCALE_IMAGE
)
# 몇개의 얼굴을 찾았는지 말합니다
# 얼굴이 없는 사람들이 종종 있어요
print("Found {0} faces!".format(len(faces)))
# 얼굴에 초록색 사각형 그려주기 -> RGB (0, 255, 0)
# 빨강은 (255,0,0), 파랑은 (0,0,255)
for (x, y, w, h) in faces:
cv2.rectangle(image, (x, y), (x+w, y+h), (0, 255, 0), 2)
# 원으로 그린다면?
# cv2.circle(image,(x+int(w/2),y+int(h/2)), w, (0,0,255), 2)
# 얼굴에 사각형을 친 사진을 출력합니다
cv2.imwrite("Faces.png", image)
# cv2.imwrite("Faces_circle.png", image)
cv2.waitKey(0)