Louis
Louis

Reputation: 1305

How to deploy a standalone project that is based on OpenCV in Visual Studio 2010?

I have a solution in VS 2010 that calls several OpenCV functions. Now I want to deploy (release) this project to use in another machine that doesn't have OpenCV. I don't want to install OpenCV on the other machine.

I know that I need several dll files, is there any automatic method that can collect all the desired files and put them together with the released .exe file so I can just send/copy this folder ?

Many thanks,

Upvotes: 3

Views: 4354

Answers (1)

karlphillip
karlphillip

Reputation: 93468

If you have the solution in VS2010 you can look at the project Properties and check which OpenCV libraries the project is being linked with, and then ship those DLLs along with your application. It's a 2 min work.

enter image description here

Upvotes: 5

Related Questions