2

Possible Duplicate:
Where do I start learning about image processing and object recognition?
Is there any best way for implemeting Object Recognition in android?

I tried to implement object recognition(Face tracking) in my project using OpenCV library, But I have a problem with openCV when I run this application on my device it require to install OpenCV Manager in your device.

I just wanted to know is there any way to do object recognition without install any external application or supporting file in device.

Community
  • 1
  • 1
veera
  • 67
  • 2
  • 9
  • This might help you: http://stackoverflow.com/questions/9569529/android-face-detector-using-android-camera – Anand Sriraman Dec 03 '12 at 12:08
  • @hotveryspicy yes that was my first question and i am new in stackoverflow, I never used before. – veera Dec 03 '12 at 12:12
  • Thank's for reply Anand Sriraman but this is for android 4.0(ICS) or above version's of android. I wanted to do for 2.3 or 3.0 above android version's. – veera Dec 03 '12 at 12:19

2 Answers2

2

Or you could try the FaceDetector class. Its available since API Level 1.

Anand Sriraman
  • 158
  • 1
  • 8
0

Try attach native libraries for OpenCV to your project and use OpenCVLoader.initDebug(); to initialization.

Sergei Vasilenko
  • 2,313
  • 2
  • 27
  • 38