Hi all you brilliant minds =)
I can use the eye cam with the built in VideoCaptureDevice in the AForge framework.
But i want to be able to edit the camera options, like framerate, framesize etc.
I’m using the AForge framework to process the images, but i’m not sure how i will get the actual image.
Best case scenario would be to have a BitmapReady event that included a Bitmap object.
Is that possible somehow?
Like this
void device_BitmapReady( object sender, NewFrameEventArgs eventArgs )
{
eventArgs.Bitmap
//Do crazy stuff to bitmap
}
I have been working with C# for a few years, but i’m not at all into all that unmanaged stuff.
Thanks in advance =)