Computing Squared Euclidean Distances Between Point Sets in PointNet++
Computing Pairwise Squared Euclidean Distances def square_distance(src, dst): """ Compute squared Euclidean distances between each pair of points from two sets. The formula used is: ||a - b||^2 = ||a||^2 + ||b||^2 - 2 * a^T * b Input: src: source points, [B, N, C] dst: target points,...
