I'm currently using C# with Emgu CV to create a real-time face recognition programme in student registration system. Upon the process in developing it, I have several problems been spotted in accessing image data and assigning value on it.
My question is given as below:
May I know how to have a direct access to image data from the image i captured from web cam? Or perhaps how is the 'live image' from web cam can be connected to my image data to process the face image matching?
Any advice on getting this problem done are much welcome.
Thanks & regards,
Caulson Chua
To capture Image in EmguCV you have to use the
capture
object.then you can add an event handler like this to capture a new frame whenever the application in idle.
Now this
latestFrame
variable will contain the current frame that was captured from the web cam and you can apply various types of image processing on it.PS: For learning more about EmguCV and how to build a face recognition system,I would suggest you to check this link