Click here to Skip to main content
15,884,836 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i am developing automatic mcqs grader as my fyp.
for this purpose i am using c# with emgu cv and the problem i am facing is when i want to load an image by using this code
C#
private void button1_Click(object sender, EventArgs e)
    {
        OpenFileDialog Openfile = new OpenFileDialog();
        if (Openfile.ShowDialog() == DialogResult.OK)
        {
            Image<bgr,> My_Image = new Image<bgr,>(Openfile.FileName);
            pictureBox1.Image = My_Image.ToBitmap();
        }
    }

but i get exception "TypeInitalizer threw an exception unable to load opencv core 220.dll"
kindly help me how to solve this error?????
Posted
Updated 24-Dec-12 3:05am
v2
Comments
Herman<T>.Instance 24-Dec-12 10:13am    
where you get the exception if you debug, and is there more information available?

1 solution

You're missing a second type identifier in the following line:
Image<bgr,> My_Image = new Image<bgr,>(Openfile.FileName);

There has to be a second type identifier after the comma, in both places.

Perhaps you should read Creating Your First EMGU Image Processing Project[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900