Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Image analysis libraries/features [closed]

I have an idea to create an application which enable me to analyse an image from camera phone on android. I'm thinking about creating an application which will recognize faces (for now it's just an idea), but first I want to create something easier (like application which detects for example red square next to the blue circle). Has android any libraries or features which will help me to recognize shapes (like square, rectangle, circle) and colors in the picture which I made using my camera phone? Any suggestion welcome

like image 506
Ziva Avatar asked Feb 02 '13 12:02

Ziva


2 Answers

I think Augmented Reality in android will help you http://code.google.com/p/andar/

like image 192
Hardik Nadiyapara Avatar answered Oct 05 '22 11:10

Hardik Nadiyapara


Take a look at http://opencv.org/android.

Face detector is already implemented by android api: http://developer.android.com/reference/android/media/FaceDetector.html

like image 40
vfcosta Avatar answered Oct 05 '22 10:10

vfcosta