Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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);
share|improve this question
Could you post the full exception w/ stack trace, not just the output window? – roken Feb 10 '12 at 13:38
Here is the complete exception: – user1201993 Feb 11 '12 at 12:48

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.