Skip to main content
. 2020 May 27;20(11):3037. doi: 10.3390/s20113037
Algorithm 2 Inlier Segmentation
1: Divide X˜I into m˜ sub-regions D˜={d˜1,d˜2,,d˜m˜} by Euclidean space distance of the points, and initialize
 inlier cluster C˜O=0;
2: Conduct random sampling on each sub-region and generate hypotheses H˜;
3: Calculate the permutation preference matrix P;
4: Calculate the Spearman footrule distance matrix F for the permutation preferences of points i and j
 Equation (5);
5: Conduct linkage clustering with distance F and obtain clusters C˜={c˜1,c˜2,,c˜n˜}
6: If C^==C˜, return C˜ as the inlier segmentation result; else C^=C˜, D˜=C˜, and return to step 2.