Ask Your Question
0

opencv execution

asked 2013-03-27 21:26:06 -0600

Let say i'm able to compile and execute the motion tracking project in my working computer. If I want to show this result to other people who doesn't have opencv environment, so I need to find out which library it need or install the opencv completely on his computer?

edit retag flag offensive close merge delete

1 answer

Sort by ยป oldest newest most voted
0

answered 2013-03-28 02:07:41 -0600

If your application hasn't to be compiled on other computer, just copy the libraries (opencv_core, opencv_... depending on what you used). A good solution to find the libraries is to link only the specified libraries in your working computer, e.g. under linux not using pkg-config opencv --libs but -lopencv_core -lopencv_... and see what is really needed. As far as I know, there is not precision on libraries needed for each function, but if you look at the top page of the doc here, you can see that functions are presented by libraries, therefore, you can retro-engineered the problem :)

edit flag offensive delete link more

Question Tools

Stats

Asked: 2013-03-27 21:26:06 -0600

Seen: 146 times

Last updated: Mar 28 '13