Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 rtree 中,如何指定浮点相等测试的阈值?
在检查最近邻时,rtree 可以返回超过指定数量的结果,就好像两个点等距一样,它会同时返回它们。要检查这个等距离,它必须有一些阈值,因为距离是浮动的。我希望能够控制这个阈值。
实际上它不需要有一个阈值来处理关系。他们只是发生了。
假设您有数据点(1.,0.)和(0.,1.)查询点(0.,0.),我见过的欧几里得距离的任何实现都将返回完全相同的距离,没有任何阈值。
(1.,0.)
(0.,1.)
(0.,0.)