Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have written simple program to open image and show image in VS 2010 in C# using EmguCV but I am getting the following exception:

The type initializer for 'Emgu.CV.CvInvoke' threw an exception.

at line Image<Bgr, Byte> myimg = new Image<Bgr, Byte>(openfile.FileName);

here is my code..

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.Util;
using Emgu.CV.Structure;

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

        private void imageBox1_Click(object sender, EventArgs e)
        {
        }

        private void button1_Click(object sender, EventArgs e)  
        {
            OpenFileDialog openfile = new OpenFileDialog();
            if (openfile.ShowDialog() == DialogResult.OK)
            {
                // imageBox1 =new Emgu.CV.UI.ImageBox() ;
                Image<Bgr, Byte> myimg = new Image<Bgr, Byte>(openfile.FileName);
                pictureBox1.Image = myimg.ToBitmap();
                //imageBox1.Image =myimg ;
            }  
        }

        private void pictureBox1_Click(object sender, EventArgs e)
        {
        }
    }
}
share|improve this question
Any details on the exception? – Bort Feb 4 '12 at 17:00
Post the InnerException, that's the one that counts. – Hans Passant Feb 4 '12 at 22:18

2 Answers

You should solve CVInvoke exception by following suggestions outlined in emgu official wiki:

http://www.emgu.com/wiki/index.php/Download_And_Installation#The_type_initializer_for_.27Emgu.CV.CvInvoke.27_threw_an_exception.

share|improve this answer

I am trying to compile EMGU from the trunk of the SVN repository. Just to be clear, the win-superpack was previously installed and worked fine.

Upon running a simple test in a Windows Forms application i recieve the old "The type initializer for 'Emgu.CV.CvInvoke' threw an exception.".

I have tried all of the pointers found at (http://www.emgu.com/wiki/index.php/Down ... _exception.)

Upon searching for cvextern.dll i cannot find this in any of the folders of the newly built EMGU wrappers (See attached image 1). I have tried including the cvextern.dll from the previously working, older, version of EMGU.

Any guidance would be greatly appreciated.

Kind regards,

Daniel

InnerException: System.IO.DirectoryNotFoundException Message=Could not find a part of the path 'C:\Users\dan\Emotive\Emotive\bin\Debug\x86'. Source=mscorlib StackTrace: at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) at System.IO.Directory.SetCurrentDirectory(String path) at System.Environment.set_CurrentDirectory(String value) at Emgu.CV.CvInvoke.LoadUnmanagedModules(String loadDirectory, String[] unmanagedModules) in C:\Users\dan\EMGU\Emgu.CV\PInvoke\CvInvoke.cs:line 64 at Emgu.CV.CvInvoke..cctor() in C:\Users\dan\EMGU\Emgu.CV\PInvoke\CvInvoke.cs:line 100 InnerException:

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.