looking for a database to store descriptors of image features
Hello, I'm looking for a database to store my extracted (surf, sift, orb,...) features.
My idea is to use MongoDB as feature store and add each row of image descriptor as document to MongoDB.
MongoDB also includes knn and radius serch algorithms, but I can't estimate how it performs on image features
(curretly I have descriptors with 61 dimensions and more than 10.000.000 features).
Has someone ideas or experiance with mongodb or another socument store?
thank you and best regards
"MongoDB also includes knn and radius serch algorithms" - just curious, got a reference ?
also , be careful, binary descriptors, like orb will need hamming distance, while float descs. like sift work nicely with euclidean(L2)
Hi, I thought that I can use
geoNear
for radius serch (https://docs.mongodb.org/manual/refer...)i don't think, it will work with feature2d data
okay thank you. Any other ideas or solutions? I also can save my descriptors as a binary string