0

I'm developing an Android application for face recognition.

Is it possible if I'm using the mySql database that the user just saves the image and recognizes through the mySql database?

Community
  • 1
  • 1
  • 1
    No, that is not possible. MySQL can store your images and retrieve them, but it cannot do image processing as part of the retrieval process. – john elemans Dec 21 '15 at 18:05
  • I see, well if it's so, is it possible if it recognize through a new directory in the application that contains the images that user have taken? thank you for the comment :) – Syafiq Rosli Dec 22 '15 at 04:12

1 Answers1

0

you can compare faces on MySQL storing and comparing the vectors using Euclidean Distance Formula. SQRT( POW(imageVector1 - compareVector1, 2) + POW(imageVector2 - compareVector2, 2) + ...) the lowest value is the more likely to be the person you are looking for.

Galfau
  • 82
  • 1
  • 1
  • 9