2vision2
2vision2

Reputation: 5023

Build opencv exe in one machine and run in another which has no opencv installed?

I am developing an OpenCV application in linux machine with Netbeans IDE. I need to run the same application in another machine where opencv is not installed in it. Is it possible to do it? Or the machine where I run the application needs opencv to be installed?

Upvotes: 1

Views: 797

Answers (1)

Dan
Dan

Reputation: 1486

Yes, it is possible using static linking, but usually OpenCV doesn't distribute the compiled static libraries. You will have to compile your own .a and link against those to create a standalone executable.

EDIT: Take a look at this question

Upvotes: 2

Related Questions