| 531 | |
| 532 | template <class TDescriptor, class F> |
| 533 | void TemplatedDatabase<TDescriptor, F>::query(const std::vector<TDescriptor>& features, |
| 534 | QueryResults& ret, |
| 535 | int max_results, |
| 536 | int max_id) const { |
| 537 | BowVector vec; |
| 538 | m_voc->transform(features, vec); |
| 539 | query(vec, ret, max_results, max_id); |
| 540 | } |
| 541 | |
| 542 | // -------------------------------------------------------------------------- |
| 543 |
no test coverage detected