Submitted by Clarkmilo t3_1043mb2 in MachineLearning
SCP_radiantpoison t1_j33ya2o wrote
Reply to comment by bubudumbdumb in Image matching within database? [P] by Clarkmilo
What if you wanted to match faces? OpenCV has a NN module that detects faces, is there a good solution for face recognition against a database?
bubudumbdumb t1_j34fk6v wrote
In the last month I came across a blog post about vector databases. The post argued that there are a few basic types of distances (L1, L2, cosine) and that you are going to have better fortune using a vector database that supports those than searching using your own heuristic and hybrid solutions. So my suggestion would be to represent faces in some space that you can search over with a vector database or with some nearest neighbors index
Viewing a single comment thread. View all comments