简体   繁体   English

Aforge.NET网络摄像头控件XAML页面

[英]Aforge.NET Webcam Control XAML page

I want to use a webcam in c# code with Aforge.NET, but It didin't work because I don't use forms. 我想在Aforge.NET的C#代码中使用网络摄像头,但是由于我不使用表单,所以它没有用。

See my code below : 请参阅下面的代码:

    public partial class CapturePage : Page
    {
        private bool DeviceExist = false;
        private FilterInfoCollection videoDevices;
        private VideoCaptureDevice videoSource = null;

        public CapturePage()
        {
            InitializeComponent();
          getCamList();
          startVideo();
        }

        // get the devices name
        private void getCamList()
        {
            try
            {
                videoDevices = new  FilterInfoCollection(FilterCategory.VideoInputDevice);
                if (videoDevices.Count == 0)
                    throw new ApplicationException();

                DeviceExist = true;

            }
            catch (ApplicationException)
            {
                DeviceExist = false;
            }
        }



               //toggle start and stop button
               private void startVideo() // as it's say
               {
                if (DeviceExist)
                {
                    videoSource = new VideoCaptureDevice(videoDevices[0].MonikerString); // the only one webcam
                    videoSource.NewFrame += new NewFrameEventHandler(video_NewFrame);
                    CloseVideoSource();
                  //  videoSource.DesiredFrameSize = new Size(160, 120); // deprecated ?
                    //videoSource.DesiredFrameRate = 10;
                    videoSource.Start();

                }
                else
                {
                    // error
                }
            }
            else
            {
                if (videoSource.IsRunning)
                {
                    timer1.Enabled = false;
                    CloseVideoSource();

                }
            }
        }

        //eventhandler if new frame is ready
        private void video_NewFrame(object sender, NewFrameEventArgs eventArgs)
        {
            Bitmap img = (Bitmap)eventArgs.Frame.Clone();
            //do processing here
            pictureBox1.Image = img; // But I can't have pictureBox in xaml ??
        }

        //close the device safely
        private void CloseVideoSource()
        {
            if (!(videoSource == null))
                if (videoSource.IsRunning)
                {
                    videoSource.SignalToStop();
                    videoSource = null;
                }
        }


    }
}

I tried this code in a form application, and it's work, but with a page, PictureBox are not referenced. 我在表单应用程序中尝试了此代码,并且可以正常工作,但是在页面中未引用PictureBox。 Even if I reference it and create one in the code, this didn't work. 即使我引用它并在代码中创建一个,它也不起作用。

Can I, and how, use a PictureBox in a XAML Page ? 我可以以及如何在XAML页面中使用PictureBox? Or there is an other solution tu use Aforge.net Webcam in Xaml Page ? 还是在Xaml Page中使用Aforge.net网络摄像头还有其他解决方案?

I succeded with changing the NewFrame methode like this: 我成功更改了NewFrame方法,如下所示:

   private void video_NewFrame(object sender, NewFrameEventArgs eventArgs)
    {
        System.Drawing.Image imgforms = (System.Drawing.Bitmap)eventArgs.Frame.Clone();

        BitmapImage bi = new BitmapImage();
        bi.BeginInit();

        MemoryStream ms = new MemoryStream();
        imgforms.Save(ms, ImageFormat.Bmp);
        ms.Seek(0, SeekOrigin.Begin);

        bi.StreamSource = ms;
        bi.EndInit();

        //Using the freeze function to avoid cross thread operations 
        bi.Freeze();

        //Calling the UI thread using the Dispatcher to update the 'Image' WPF control         
        Dispatcher.BeginInvoke(new ThreadStart(delegate
        {
            ImageWebcam.Source = bi; /*frameholder is the name of the 'Image' WPF control*/
        }));     
    }

cheers ! 欢呼!

You could use WindowsFormsHost to integrate this Page in your WPF application. 您可以使用WindowsFormsHost将此Page集成到WPF应用程序中。

If you need a WPF bitmap you may "convert" it like desribed here: Load a WPF BitmapImage from a System.Drawing.Bitmap 如果您需要WPF位图,则可以像此处描述的那样“转换”它: 从System.Drawing.Bitmap加载WPF BitmapImage。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM