I am getting video from webcam and in that video detecting a color. But when I run this code it gives me some errors like : The comlpete exception i face is below;
System.InvalidOperationException was unhandled by user code
Message=Object is currently in use elsewhere. Source=System.Drawing StackTrace: at System.Drawing.Image.get_Width() at AForge.Imaging.Filters.BaseInPlacePartialFilter.ApplyInPlace(Bitmap image) at sample3.Form1.startVideo_NewFrame(Object sender, NewFrameEventArgs eventArgs) in C:\Documents and Settings\Administrator\My Documents\Visual Studio 2010\Projects\sample3\sample3\Form1.cs:line 112 at AForge.Video.DirectShow.VideoCaptureDevice.OnNewFrame(Bitmap image) at AForge.Video.DirectShow.VideoCaptureDevice.Grabber.BufferCB(Double sampleTime, IntPtr buffer, Int32 bufferLen) InnerException:
The code is below; please help me its my project and I am stuck.
void startVideo_NewFrame(object sender, NewFrameEventArgs eventArgs)
{
this.Invoke((MethodInvoker)delegate()
{
/* UnmanagedImage uimage = UnmanagedImage.FromManagedImage(eventArgs.Frame);
camProc.getProcess(uimage);*/
Bitmap image = (Bitmap)eventArgs.Frame.Clone();
pictureBox1.Image = image;
//Applying Color Filter and Selecting the color to detect
EuclideanColorFiltering filter = new EuclideanColorFiltering();
filter.CenterColor = new AForge.Imaging.RGB(Color.FromArgb(176, 23, 31));
filter.Radius = 100;
filter.ApplyInPlace(image);
BitmapData objectsData = image.LockBits(new Rectangle(0, 0, image.Width, image.Height), ImageLockMode.ReadOnly, image.PixelFormat);