I am running into issues building an existing 32-bit EmguCV (Version 2.3) into 64-bit using .net 4.0 and VS2010 on a W7/x64 OS. I have purchased a commercial license, if that matters and downloaded from the links provided in the receipt.

The error is

System.TypeInitializationException was unhandled
 Message=The type initializer for 'Emgu.CV.CvInvoke' threw an exception.
 Source=Emgu.CV
 TypeName=Emgu.CV.CvInvoke

I followed the instructions provided in this article. In fact I used the samples projects in the article and they build fine with V2.2, but when I replace with V2.3 binaries (both emgu and opencv), run into the error.

Has anyone successfully built an Emgu (Version 2.3.x) x64 project? Please provide some guidance.

link|improve this question

1  
and Yes I have added the correct binaries from opencv into my debug folder. So it cannot be a simple missing dll error. – Mikos Oct 27 '11 at 19:25
1  
Hi Mikos, I found it quite funny to find that the article was one I wrote. I'll have a look into the problem now and get back to you. Cheers – Chris Oct 27 '11 at 19:59
1  
@Chris, thanks. I followed your instructions to the letter - it was indeed very helpful. Sincerely appreciate your help and support. – Mikos Oct 27 '11 at 20:12
1  
Hi, well I've compiled the projects using EMGU 2.3.0 x64 and everything works fine. The error you mention could be down to to not targeting the correct platform. Does the InnerException read {"An attempt was made to load a program with an incorrect format. (Exception from HRESULT: 0x8007000B)"} if so then this is the problem. If not could you post it so I can try and recreate the problem. Cheers – Chris Oct 27 '11 at 20:34
1  
"convertion from Image<Emgu.CV.Structure.Bgra, System.Byte> to Image<Emgu.CV.Structure.Bgr, System.Byte> is not supported by OpenCV" – Mikos Oct 27 '11 at 20:51
show 6 more comments
feedback

1 Answer

up vote 2 down vote accepted

The cause of this error should anyone else run into the same problem is that the program can not access opencv_imgproc231.dll or opencv_core231.dll even though they are present in the output "bin" directory.

There are two solutions, adding them to the project and set there properties to copy always as it's the two key files.

Replacing the current ones in the Bin folder with new copies also solved the problem.

If both methods fail then there may be a problem with the build so download a new copy from sorceforge and try again. The error will also be incorporate within the article should a clearer reference be required.

Cheers

Chris

link|improve this answer
Hello @Chris. I tried adding those two refernces to my project, but somehow I wasn't allowed to add it. It said Reference could not added reason being it is not accessible or it is not a valid assembly/COM component . Please help! – ykombinator Jan 9 at 16:07
Hi the files mentioned are the unmanaged opencv code what EMGU wraps effectively they aren't .NET components and have to be added to the output directory or as existing files within your project. See my article at codeproject and it will walk you through it codeproject.com/KB/cs/EMGU_Image_Processing.aspx Cheers – Chris Jan 9 at 16:21
Thanks, I got it running. :) – ykombinator Jan 9 at 17:17
feedback

Your Answer

 
or
required, but never shown

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