emgucv有没有教程

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了emgucv有没有教程相关的知识,希望对你有一定的参考价值。

参考技术A 回复求经验

[C#]emgucv教程1:摄像头读取

C#使用Emgu CV捕获摄像头并显示

using Emgu.CV;
using Emgu.CV.Structure;


public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private VideoCapture capture;
        private bool isProcess = false;

        private void button1_Click(object sender, EventArgs e)
        {
            if (capture != null)
            {
                if (isProcess)
                {
                    Application.Idle -= new EventHandler(ProcessFram);
                    this.startBtn.Text = "Stop";
                }
                else
                {
                    Application.Idle += new EventHandler(ProcessFram);
                    this.startBtn.Text = "Start";
                }
                isProcess = !isProcess;
            }
            else
            {
                try {
                    capture = new VideoCapture();
                }
                catch (NullReferenceException expt)
                {
                    MessageBox.Show(expt.Message);
                }
            }
        }

        private void ProcessFram(object sender, EventArgs arg)
        {
            Mat mat1 = capture.QueryFrame();
            Mat mat2=new Mat();

            //水平反转图片
            CvInvoke.Flip(mat1, mat2, Emgu.CV.CvEnum.FlipType.Horizontal);

            //使用Emgu的控件 imageBox
            imageBox1.Image = mat2;

            //使用Winform控件 pictureBox
            Image<Bgr, byte> image = mat2.ToImage<Bgr, byte>();
            pictureBox1.Image = image.ToBitmap();            
        }
    }

以上是关于emgucv有没有教程的主要内容,如果未能解决你的问题,请参考以下文章

EMgucv 保存从网络摄像头检测到的多张人脸

emgucv中有没有通过特征来比对两幅人脸的是不是同一个人的方法

有没有办法在 C# 中使用 emguCV 比较两张脸?

[C#]emgucv教程1:摄像头读取

为啥我安装的emgucv的bin文件夹下很多DLL都没有

EmguCV手部检测