Click here to Skip to main content
16,019,843 members

Comments by Member 11968073 (Top 10 by date)

Member 11968073 31-Jan-16 0:43am View    
yes sir that's correct
Member 11968073 31-Jan-16 0:41am View    
im not that familiar with vb.net haha
Member 11968073 31-Jan-16 0:26am View    
name = Eigen_Recog.Recognise(result);


if (string.IsNullOrEmpty(name))
{
imageframe.Draw("Unknown", ref font, new Point(facesDetected[i].X - 2, facesDetected[i].Y - 2), new Bgr(Color.Red));
}
else if (!string.IsNullOrEmpty(name))
{
imageframe.Draw(name, ref font, new Point(facesDetected[i].X - 2, facesDetected[i].Y - 2), new Bgr(Color.Red));
db_con.GetFace(name);
label1.Text = name + " attended";
ADD_Face_Found(result, name);
}

this is where my recognition process happens
Member 11968073 31-Jan-16 0:09am View    
this is related to my face recognition project.
what im trying to do is, when the face has been already recognized, i would like to have a message that he/she has been already recognized.

thats all sir
Member 11968073 30-Jan-16 23:34pm View    
im sorry sir thank you for your expertise.