Quiz Application In c#.net
-
Hi developers I want make a quiz program. It use image recognition (recon the person from the given image) also.Every questions have a four options as answers.And the entire quiz is controlled with timer.Means it must end within the given time.Am really doubtful in so many factors.I searched many in CodeProject,but couldn't find an appropriate application to study.If you have any idea please help me. I need help to build it in c#.net varun
-
Hi developers I want make a quiz program. It use image recognition (recon the person from the given image) also.Every questions have a four options as answers.And the entire quiz is controlled with timer.Means it must end within the given time.Am really doubtful in so many factors.I searched many in CodeProject,but couldn't find an appropriate application to study.If you have any idea please help me. I need help to build it in c#.net varun
Hi, the trickiest part will be the face detection. Here are two articles that describe some basics: Face Detection in C#[^] Face and Eyes Detection Using OpenCV[^] You would need to capture an image with a webcam and try to recognize a face that is stored somewhere (image file or just in database). The whole quiz-timer thing should be quite simple. Try to break down your problem in simple tasks and solve them step for step.
-
Hi, the trickiest part will be the face detection. Here are two articles that describe some basics: Face Detection in C#[^] Face and Eyes Detection Using OpenCV[^] You would need to capture an image with a webcam and try to recognize a face that is stored somewhere (image file or just in database). The whole quiz-timer thing should be quite simple. Try to break down your problem in simple tasks and solve them step for step.
-
Thanks first Your help is so much valuable for me.but still i am confused in making that to work with in the given time.Can you point me to any c# source codes available
-
There is no ready to use source code that will do your task. This is why you need to develop it on your own. Try to learn about face recognition and the use of timers to control your quiz flow.