Reputation: 113
I have opencv10.05 installed in my laptop and I was working on tracking with c++. Now I have one project that I have to run the code in java with opencv. Is it possible to use same opencv10.05 or do I need to install the whole steup?
Upvotes: 0
Views: 44
Reputation: 39796
opencv comes with its own java bindings. you will need cmake, ant, and the opencv src code to build it.
javacv is a 3rd party wrapper, unfortunately mostly based on opencv's deprecated 1.0 c-api, so you will have to program java, like it was in c years ago. mixed blessing..
Upvotes: 1