计算机视觉知识点整理:PointNet++之最远点采样(farthest point sample, FPS)代码理解
#farthest_point_sample函数完成最远点采样:#从一个输入点云中按照所需要的点的个数npoint采样出足够多的点,#并且点与点之间的距离要足够远。#返回结果是npoint个采样点在原始点云中的索引。deffarthest_point_sample(xyz,npoint):"""Input:xyz:pointclouddata,[B,N,3]npoint:numberofsampl