Im using the following https://github.com/ageitgey/face_recognition to process images with faces in. Ive used it a few times, but im wanting to get a bit more serious with it, and store a large amount of images and be able to query across them all quickly. So the obvious would to store the 128 Vector in a database. At the moment im wanting to use MySQL as its more in my comfort zone while im learning.
From what i have read i would need to create a column for each of the 128 vectors, and use FLOAT. But i'm cant find anything more on specifics like FLOAT(10,6) etc, or if i need to create any specifics regarding indexes.
The next thing would be then be the Query to search the known vectors with the vectors taken from an image im wishing to search. But i cant find any actual working examples of this.