I am working with a Face Recognition project and I want to create a "Register" method.
Register Method must be able to capture 10 faces with different angles. So, I need to capture 10 different image files, but I need to be 5 seconds after so they would have time to change the angle of their face.
I know how to capture 10 faces continuously, but I can't do it with delay of 5 seconds every next capture.
This is my code for capturing 10 image continuously:
for(int x = 0; x < 10; x++)
{
imgCapture = capture.QueryFrame();
}