vector<tuple<float, int, int>> Matcher::LSS_R_Fast2(vector<tuple<float, int, int>> &corr, SingleTemplate & latent_template, SingleTemplate & rolled_template, int d_thr)
时间: 2024-04-12 13:33:05 浏览: 179
TypeError: int() argument must be a string, a bytes-like object or a number, not ‘tuple’
5星 · 资源好评率100%
这段代码定义了一个名为Matcher::LSS_R_Fast2的函数,该函数接受以下参数:
- 一个引用类型的vector<tuple<float, int, int>>类型的参数corr,用于存储一组元组,每个元组包含一个浮点数和两个整数。
- 一个SingleTemplate类型的引用参数latent_template,表示一个单独的模板。
- 一个SingleTemplate类型的引用参数rolled_template,表示一个滚动的模板。
- 一个整数类型的参数d_thr,表示一个阈值。
函数返回一个vector<tuple<float, int, int>>类型的对象。
该函数的作用是通过使用特定的算法和计算方法,在corr中筛选并返回满足一定条件的元组。具体的逻辑和实现需要查看函数内部的代码。
阅读全文