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?
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?
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.