필터 지우기
필터 지우기

LBP for face recognition

조회 수: 4 (최근 30일)
Rakesh Singh
Rakesh Singh 2017년 8월 7일
댓글: Shano Atallah 2019년 2월 12일
how does the method of LBP(or pixel values computed by LBP) helps in the method of face recognition and face detection
  댓글 수: 1
Shano Atallah
Shano Atallah 2019년 2월 12일
How are you classification in lbp using neural networks?

댓글을 달려면 로그인하십시오.

채택된 답변

Jinsong Han
Jinsong Han 2017년 8월 7일
Local Binary Patterns are used in face detection/recognition because of its fast performance and robustness.
LBP generally works by looking at each pixel and comparing it to its neighbors. If the center pixel's intensity is greater than the neighboring pixel, a 0 is given to the neighbor - otherwise, a 1 is given. The results are then concatenated to form a binary code for the center pixel, which can be changed to decimal format for simpler representation. This technique is used often for texture classification, and is robust to most lighting conditions.
Some algorithms for facial recognition involving LBP first divide an image into several smaller regions from which the features are extracted using LBP. This generates a feature histogram for each region which can be concatenated to form a visual descriptor of the face. This can be paired with other machine learning techniques like support vector machines for facial recognition.
See the following links for more information: IEEE, GJCST, Wikipedia, MATLAB LBP Documentation

추가 답변 (0개)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by