what type we can specify for surf descriptor in the mysql DB

asked 2014-04-25 00:27:37 -0600

Athira gravatar image

updated 2014-04-25 00:29:52 -0600

berak gravatar image

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.

edit retag flag offensive close merge delete

Comments

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.

StevenPuttemans gravatar imageStevenPuttemans ( 2014-04-25 03:23:18 -0600 )edit