《Trajectory Clustering- A Partition-and-Group Framework》学习笔记
为了线段的汇集,需要分辨线段之间的距离,故引入线段的距离函数。含三部分:(i) the perpendicular distance (垂直距离), (ii) the parallel distance (平行距离),and (iii) the angle distance (角度距离)。下图表示清楚:
通过向量运算可计算上图Ps/Pe的值,以及θ:
最终,dist(Li,Lj)=w⊥⋅d⊥(Li,Lj)+w∥⋅d∥(Li,Lj)+wθ⋅dθ(Li,Lj)dist(L_i, L_j),一般权重都取1。
PS,https://github.com/proxypoke/vector用于向量计算。