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?
-
3wow, you are living in the future, they did not even finish opencv3.0 yet ;)berak– berak2014-11-07 09:28:12 +00:00Commented Nov 7, 2014 at 9:28
-
Maybe it's 1.0.0-5, but if it is indeed 10.05, i gotta update:).bikz05– bikz052014-11-07 10:43:00 +00:00Commented Nov 7, 2014 at 10:43
Add a comment
|
1 Answer
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..
1 Comment
karlphillip
Isn't that for Android only?