Face detection #675
Unanswered
barabba2005
asked this question in
Q&A
Replies: 1 comment
-
|
Please follow the Open CV face recognition tutorial here: Benchmarking face recognition data set can be found here: Performance highly depends on the face recognition algorithm you choose. Proper facial feature alignment is critical. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi all
I have 10 photo faces and I put them in an Image array;
List<Image<Gray, Byte>> TrainedFaces = new List<Image<Gray, byte>>();
string[] files = Directory.GetFiles(@"D:\FaceImages", "*.jpg", SearchOption.TopDirectoryOnly);
foreach (var file in files){
Image<Gray, byte> trainedImages = new Image<Gray, byte>(file);
TrainedFaces[ImagesCount] = (trainedImages);
}
I should find a face that matches with a particular photo;
private Image<Gray, byte> metal = new Image<Bgr, Byte>(@"C:\Users\HP-620\Pictures\testPicture.jpg");
I've triyed a lot of web example but the results are no good.
Please help me
Beta Was this translation helpful? Give feedback.
All reactions