HI Im using the code for face detection. but not im going to continue with face recognition. But im get stack here where, how for the next step. However, im using the emgu version 2.2
if (faces.Length > 0)
{
foreach (var face in faces)
{
ImageFrame.Draw(face.rect, new Bgr(Color.Green), 2);
//Extract face
ExtractedFace = new Bitmap(face.rect.Width, face.rect.Height);
FaceConvas = Graphics.FromImage(ExtractedFace);
FaceConvas.DrawImage(GrayBmpInput, 0, 0, face.rect, GraphicsUnit.Pixel);
ExtcFacesArr[faceNo] = ExtractedFace;
faceNo++;
}
faceNo = 0;
picExtcFaces.Image = ExtcFacesArr[faceNo];
CamImageBox.Image = ImageFrame;
}
}
Where should i continue with the face recognition and do have any good reference online in C# code?
You code is almost correct, but i think you do not have idea what to do next.I am doing face recognition in one of my app for showing a mask on face.I am doing like this.