我收到这个错误
The type initializer for ‘Emgu.CV.CvInvoke’ threw an exception.
当我尝试使用Emgu CV.我已经尝试了我能想到的一切,以解决这个问题,但它仍然提供相同的错误,当我点击它显示的按钮
Object reference not set to an instance of an object.
这是我正在尝试的代码:
@H_404_14@void ProcessFunction(object sender,EventArgs e) { imgOrg = capturecam.QueryFrame(); if (imgOrg == null) return; imgProc = imgOrg.InRange(new Bgr(50,50,50),new Bgr(255,255,255)); imgProc = imgProc.SmoothGaussian(9); imageBox1.Image = imgOrg; imageBox2.Image = imgProc; }我可能做错了什么,如何进一步调试?谢谢!