Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Should I use JavaCV or OpenCV's java library on Android?

Tags:

android

opencv

http://opencv.willowgarage.com/wiki/Android or http://code.google.com/p/javacv/ ?

I am new to computer vision, and want to do something on the phone camera such as matching the current screen to the most similar image in the database.

Both of them are java, what are the differences? Which one should I use?

Thank you so much for helping!

like image 600
kaitik Avatar asked Oct 08 '11 18:10

kaitik


1 Answers

JavaCV is a wrapper around some native libraries, including OpenCV.

  1. In any case you are going to use OpenCV, either directly by writing your own wrapper or using OpenCV's Android wrappers or using JavaCV.

  2. As said JavaCV uses several libs, so it has many more features than only OpenCV. If you need those features than naturally you'd choose JavaCV.

like image 181
Peter Knego Avatar answered Oct 29 '22 03:10

Peter Knego