1. 程式人生 > >關於使用EmguCV出現 “無法載入 DLL“cvextern”: 找不到指定的程式” 的解決方法

關於使用EmguCV出現 “無法載入 DLL“cvextern”: 找不到指定的程式” 的解決方法

1.按要求將Emgu.CV.UI,Emgu.CV.World,Emgu.CV.World,Emgu.CV.GL新增引用到專案。

2.然後將WinForm新增一個按鈕和PictureBox,後臺程式碼如下:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Emgu.CV;
using Emgu.CV.Structure;
using Emgu.CV.ML;
using Emgu.CV.Util;
namespace EmguForm
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {

        }

        private void button1_Click(object sender, EventArgs e)
        {
            var dialog = new OpenFileDialog();
            dialog.Filter = "圖片(*.jpg/*.png/*.gif/*.bmp)|*.jpg;*.png;*.gif;*.bmp";
            if (dialog.ShowDialog() == DialogResult.OK)
            {
                var filename = dialog.FileName;
                Image<Bgr, Byte> img = new Image<Bgr, Byte>(filename);
                Image<Bgr, byte> dest = new Image<Bgr, byte>(CvInvoke.cvGetSize(img));
                CvInvoke.cvCopy(img, dest, IntPtr.Zero);
                pictureBox1.Image = dest.ToBitmap();
            }
        }
    }
}
3.執行報錯誤:“ 關於使用EmguCV出現 “無法載入 DLL“cvextern”: 找不到指定的程式” 的解決方法

4.通過網上查詢原因嘗試,結果方案如下,將Emgu安裝檔案下(64位)C:\Emgu\emgucv-windesktop 3.3.0.2824\bin\x64下的Dll複製到Winform專案Debug資料夾下即可正常執行載入圖片。

5.問題原因:專案新增引用Emgu.CV.UI等的四個庫對cvextern.dll存在依賴。