what type we can specify for surf descriptor in the mysql DB
I'm using Opencv C++, for a face recognition application. For that I used SURF as descriptor and FlannMatcher for matching the points. Now I need to insert the descriptors into the database(I am using mysql DB). Can I insert descriptors into mysql DB, If yes which is the type I can use to store.
I think you are making it difficult for yourself, store them either as float values in a matrix structure or store them as a comma seperated values inside a string field. Should work perfectly.