45 /// Given a set of search parameters, a query image, searches for matching images and returns the match. If the match is nullptr, then the search failed
46 /// (it will fail if the example image has missing features).
51 std::vector< std::vector<uint64_t> > inverted_index; /// Stores the inverted index, dimension one is the cluster index, dimension two holds a list of ids containing that word.
52 std::vector<float> idf_weights; /// Stores the idf weights, one element per cluster
53
54 };
55
56/// Prints out information about the match results.