0

I am trying to make face identification security system.

I Used Open CV with Python.

I only can detect the faces from video and store them in my local Hard Drive.

but I want to compare the faces for identification of person like

while faces in my databse:
    if face="xyz":
        face is right
    if face is right:
        person is xyz

This is what I am looking for.

Ken Y-N
  • 14,644
  • 21
  • 71
  • 114
Nisarg
  • 463
  • 9
  • 26
  • This seems similar to [this unanswered question](https://stackoverflow.com/questions/24203204/most-similar-face-recognition-in-python). – Ken Y-N Feb 24 '16 at 04:17

1 Answers1

0

This is the face recognition or face re identification, opencv offer the basic face recognition algorithm. You can also refer to some deep learning mathod such as openface

vsooda
  • 1
  • 2