
Computer Vision - LAB 03_1. FACE RECOGNITION (LBPH)
·
Python/COMPUTER VISION
Computer Vision - LBPH(Local Binary Patterns Histograms)LBPH(Local Binary Patterns Histograms) 알고리즘은 얼굴 인식에서 널리 사용되는 기법으로, 간단한 구조를 가지고 있다. 이 알고리즘은 이미지의 텍스처를 분석하여 특징을 추출하고, 이를 기반으로 얼굴salmon1113.tistory.com 앞선 내용에서 전처리를 거친 이미지를 바탕으로 LBPH 알고리즘을 통해 얼굴 분류기를 학습시키고, 실행시키고, 평가해보겠다. 1. Training (LBPH)from PIL import Image import cv2 import numpy as np import os def get_image_data():.........ids, face..