얼굴인식

    DNN 모듈 집중 분석

    1. DNN모듈이 무엇인가? 2. DNN 모듈로 얼굴을 인식할때 사용할 framework 3. DNN module과 Caffe framework로 face detection 처리 4. DNN module로 동영상 face detection 처리 4. DNN module을 이용한 face recognition 의 결과 분석 및 한계점 1. what's DNN module? -> 단순한 object detect 모듈인 Haar 모듈 만으로는 퍼포먼스나 얼굴을 인식해내는 측면에서 한계가 분명히 존재한다. 따라서 좀 더 성능을 향상시키기 위해 딥러닝 모듈인 deep neural network module(이하 dnn 모듈)을 도입할 수 있다. (2017.8월에 나온 모듈) : dnn 모듈이 개발됨으로써 comp..

    Haar module detection

    1. Harr cascade detection이란? : 이번 챕터에서 face recognition에 대해 다룰 것이다. -> face detection을 위해 Object detection module 또는 Deep learning module(dnn module)이 사용 가능하다. :서로 융합하면 장단점이 있다. -> Object Detection: Haar cascade object detection 사용. -> 장점: 굉장히 빠르게 object detection을 이용한다. 단점: 아무래도 CNN 보다 정확도가 떨어진다. (예외 상황에 인식 힘듦 : 얼굴 돌리거나, 선글라스 낀다던가...) 2. Haar 방식을 이용한 Face detection -> face_cascade/ eyes_cascade..