如何将 emgu CV 相机捕获的图像保存在文件夹中并检索。每当我试图保存空引用异常时都会出错。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Emgu.CV;
using Emgu.CV.UI;
using Emgu.CV.Util;
using Emgu.CV.Structure;
namespace camerapart2
{
    public partial class Form1 : Form
    {
        private Capture capture;
        private bool captureinprogress;
        public Form1()
        {
            InitializeComponent();
        }
        private void ProcessFrame(object sender, EventArgs arg)
        Image<Bgr, Byte> ImageFrame = capture.QueryFrame();
        cameraimage.Image = ImageFrame;
        pictureBox1.Image = ImageFrame.ToBitmap();
        ImageFrame.Save(@"E:\MyPic.jpg");
        private void btnStart_Click(object sender, EventArgs e)
        {
            if (capture == null)
            {
                try
                {
                    capture = new Capture();
                }
                catch (NullReferenceException excpt)
                {
                    MessageBox.Show(excpt.Message);
                }
            }
            if (capture != null)
            {
                if (captureinprogress)
                {  //if camera is getting frames then stop the capture and set button Text
                    // "Start" for resuming capture
                    btnstart.Text = "Start!"; //
                    Application.Idle -= ProcessFrame;
                }
                else
                {
                    //if camera is NOT getting frames then start the capture and set button
                    // Text to "Stop" for pausing capture
                    btnstart.Text = "Stop";
                    Application.Idle += ProcessFrame;
                }
                captureinprogress = !captureinprogress;
            }
        }
        private void ReleaseData()
        {
            if (capture != null)
                capture.Dispose();
        }
    }
}
在这两行中,我收到了 nullreference 错误:
pictureBox1.Image = ImageFrame.ToBitmap();
ImageFrame.Save(@"E:\MyPic.jpg");