Software Archive
Read-only legacy content
17061 Discussions

Does Face Recognition feature work?

Viktor_B_
Beginner
389 Views

Hello,

I want to try the Face Recognition feature. Where can I see some examples? I am specifically interested in how I can compare two photos, as it was possible in previous versions (Perceptual Computing) SDK:

bool IsSimilar(PXCImage *image1, PXCImage *image2) {
    PXCFaceAnalysis::Recognition::Model *ref=createModelFromImage(image1);
    PXCFaceAnalysis::Recognition::Model *cur=createModelFromImage(image2);
    pxcU32 index;
    return cur->Compare(&ref,1,0,&index)>=PXC_STATUS_NO_ERROR;
}

Here is clearly shown how this can be done. In the RealSense SDK I did not find such examples. Actually I think there are examples for all of the key features RealSense SDK except for Face Recognition. Is it possible to do this in the RealSense SDK at all? I've spent so much time, but I can't get a result. Help, please!

0 Kudos
2 Replies
Xusheng_L_Intel
Employee
389 Views

Yes, you can find it in sample source code @C:\Program Files (x86)\Intel\RSSDK\sample\face_tracking

0 Kudos
Linda_M_
Beginner
389 Views

 On RSSDK Documentation ,SDK Reference Manual->Programming Guide->User Facing Algorithms->Face tracking and Recognition->Face recognition, You will get examples for the below with code.

  1. Configuring Face Recognition
  2. Recognizing a Face
  3. Loading/Saving Recognition Database

    

0 Kudos
Reply