오늘은 Selfie Segmentation
에 이은 Face Detection
이라는 솔루션입니다!
이름만 봐도 뭐하는지 알 수 있습니다.
바로 코드와 실행 결과 올려드립니다!
import cv2 as cv
import mediapipe as mp
mp_face_detection = mp.solutions.face_detection
mp_drawing = mp.solutions.drawing_utils
IMAGE_FILES = './selfie_input.jpg'
with mp_face_detection.FaceDetection(min_detection_confidence=0.5) as face_detection:
image = cv.imread(IMAGE_FILES)
results = face_detection.process(cv.cvtColor(image, cv.COLOR_BGR2RGB))
if results.detections:
annotated_image = image.copy()
for detection in results.detections:
mp_drawing.draw_detection(annotated_image, detection)
cv.imwrite('./selfie_output.jpg', annotated_image)
뭔—-가 잘 하는 것 같은데…아닌 것 같기도 하네요…
다수의 사람까지 된다고 하니…내일은 동영상으로 한번 해봐야겠습니다!