CNN을 이용한 얼굴 검출 및 추출
6502 단어 machinelearningdatasciencepython
우리는 얼굴 감지 및 추출을 위해 사전 훈련된 CNN 모델을 사용하고 있습니다.
이 프로젝트에는 두 가지 필수 요소가 있습니다.
def highlight_faces(image_path, faces):
# display image
image = plt.imread(image_path)
plt.imshow(image)
ax = plt.gca()
# for each face, draw a rectangle based on coordinates
for face in faces:
x, y, width, height = face['box']
face_border = Rectangle((x, y), width, height,
fill=False, color='red')
ax.add_patch(face_border)
plt.savefig('./media/face_detected.jpg')
plt.show()
aayushi-droid / 얼굴감지CNN
사전 훈련된 CNN 모델을 사용하여 Python에서 얼굴 감지
얼굴 인식 및 얼굴 추출
사전 훈련된CNN
모델을 사용한 얼굴 감지 및 추출.
얼굴 인식
추출된 얼굴
설치
다운로드Anacondapip install keras
pip install mtcnn
pip install keras_vggface
용법
def highlight_faces(image_path, faces):
# display image
image = plt.imread(image_path)
plt.imshow(image)
ax = plt.gca()
# for each face, draw a rectangle based on coordinates
for face in faces:
x, y, width, height = face['box']
face_border = Rectangle((x, y), width, height,
fill=False, color='red')
ax.add_patch(face_border)
plt.show()
기여
풀 리퀘스트를 환영합니다. 주요 변경 사항의 경우 먼저 문제를 열어 변경하고자 하는 사항을 논의하십시오.
테스트를 적절하게 업데이트하십시오.
특허
MIT
View on GitHub
Reference
이 문제에 관하여(CNN을 이용한 얼굴 검출 및 추출), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/aayushidroid/face-detection-and-extraction-using-cnn-936
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
Reference
이 문제에 관하여(CNN을 이용한 얼굴 검출 및 추출), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/aayushidroid/face-detection-and-extraction-using-cnn-936텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)