Reputation: 69
Good day! I am having a problem in decoding a QR Code using ZXing and Emgu CV demo particularly in the Emgu CV invoke exception issue. I can perfectly run the program with the use of my computer(the terminal in which I tested it) but after transferring the program to another computer. I get this exception.
http://i61.tinypic.com/4grexc.png
I searched the web for solutions but I can't seem to find a fitting solution.
Here's what I've tried so far:
(1) Replace the DLLs with fresh ones from which the project contains and is referenced to.
(2) Double check the assembly version (x86) for the new terminal also.
What I would like to know too:
Should I install, download a new copy of Emgu CV libraries for the new terminal and every terminal if I were to distribute copies?
Your ideas are very much appreciated!
Upvotes: 0
Views: 488
Reputation: 921
You don't have to install EmguCV or OpenCV on the targeted computers, but you need to add the OpenCV dlls in your project.
Content
as a Build Action
, and Copy Always
as Copy to Output Directory
.This is my setup to deploy applications using EmguCV.
Upvotes: 1