我想用FLANN使用BoW来索引我数据库中的所有图片。(对于CBIR项目)
我做了什么:
代码:
// Create Flann LSH index
cv::flann::Index flannIndex(this->descDescriptorbow, cv::flann::LshIndexParams(12, 20, 2), cvflann::FLANN_DIST_HAMMING);
cv::Mat results, dists;
int k=2; // find the 2 nearest neighbors
// search (nearest neighbor)
flannIndex.knnSearch(responseHist, results, dists, k, cv::flann::SearchParams() );
DescriptorBow包含我数据库的所有BoWfeatures。 ResponseHist保留了我想要评估的图片的bowFeature。
现在,为了看到最匹配的图片,我必须做些什么?
有人可以帮助我吗?