Reputation: 43
I am working on application which detect user faces and find similar faces from Realtime live streaming video using Microsoft Cognitive Services- Face API.I am using following example for my reference:
I am able to detect faces from real time video but I am not getting any idea how to store face images and how to detect similar faces from it.
Can anyone please help to find the way?
Upvotes: 1
Views: 621
Reputation: 14599
Your are looking for an other existing feature of Face API. It is a combination of several operations:
Person Group
Detect
to find faces in imagesFind Similar
to check if a face is already existing in a person groupFace API documentation: here
But in fact, there is an open-source demo project from Microsoft called Intelligent-Kiosk that has a demo called Realtime Crowd Insights that is doing exactly those things. The source code is on Github, here.
Upvotes: 2