1
試圖將圖像上載到我的圖像框中並繼續收到異常,這會打破代碼的任何想法? (類型初始化異常)。這是我第一次使用這樣的Emgu在C#中上傳圖像Emgu打開CV不工作,每次嘗試加載時都會出現異常
private void btnload_Click(object sender, EventArgs e)
{
if (ofd.ShowDialog() == DialogResult.OK)
{
input = new Image<Bgr, byte>(ofd.FileName).Resize(500, 500,INTER.CV_INTER_CUBIC, false);
imageBox1.Image = input;
gray = input.Convert<Gray, Byte>().PyrDown().PyrUp();
}
btnSet.Enabled = true;
}
發佈完整的錯誤請 – tweellt
'Emgu.CV.CvInvoke'的類型初始值設定項引發異常。 – user3461795