Ask Your Question

Sloan's profile - activity

2018-07-13 08:59:56 -0600 received badge  Necromancer (source)
2017-05-12 00:10:08 -0600 answered a question Using FLANN with binary descriptors (Brief,ORB)

This question bothered a few days too. I found the answer from this site

You need to convert the format of your descriptor into CV_32F

if(descriptors_1.type()!=CV_32F) {
descriptors_1.convertTo(descriptors_1, CV_32F); }