Reputation: 21
I'am developing an eye gaze estimation desktop application for my final year project. I wanted to know what are the main advantages of using javaCV instead of OpenCV ?
Upvotes: 2
Views: 560
Reputation: 7560
There is no tutorial for javacv. Sometimes you can't find the curresponding java implementation for Opencv's class(c++ code).Don't get frustrated.Just try to implement it in your own way and open source it.So, others can use it.Be a leader.All the best.
Upvotes: 0
Reputation: 50667
JavaCV
is just a non-official Java
version of OpenCV
.
That said, use JavaCV
if you are going to develop in Java
, and use OpenCV
otherwise.
Upvotes: 0
Reputation: 967
OpenCV is a very good Computer visio library. It has C, C++ and Python API. JavaCV is Wrapper of OpenCV using java.
Based on your application you can use native C API using Android NDK. If you are focus on Java then you can use JavaCV.
Also you can have a look at this and some tutorial.
Upvotes: 2