0

I am developing an iPhone application where I want to work on face liveness. A clear idea is spoofing of a person is not allowed. Does anyone implemented it or know-how can I achieve that.

1 Answers1

1

What you want to do exactly is not clear.

Face identification of the device owner is available through LocalAuthentication and biometrics, have a look here.

If you instead need to understand if the face you're seeing is a real person (and not just a photo) maybe take a look at this question and this article.

Also please provide some more information on what you're trying to accomplish and some code of what you've already tried.

Elvereth
  • 85
  • 8
  • I want to check the liveness of person. Like it will say person is showing photo to camera or if it's the real person then it will show the real person. – Yuvraj Kale Feb 13 '20 at 14:26
  • Then have a look at the last article I've linked, that's exactly what it does using OpenCV. [Here](https://www.objc.io/issues/21-camera-and-photos/face-recognition-with-opencv/#using-opencv-on-ios) it show how you could integrate OpenCV with iOS – Elvereth Feb 13 '20 at 14:33
  • Thanks i'll check. – Yuvraj Kale Feb 13 '20 at 14:41
  • I have gone through the link you share but not able to find out exact solution can you please help me. – Yuvraj Kale Feb 17 '20 at 16:24