Point-GNN.pytorch
Point-GNN.pytorch copied to clipboard
mistake in model.py
I think there is a mistake in the model.py: 117, where
point_set_keypoint_coordinates = point_features[point_set_keypoint_indices[:, 0]]
should be:
point_set_keypoint_coordinates = point_coordinates[point_set_keypoint_indices[:, 0]]
@Shudeng
@patrickpjiang Yes, you're right. Thanks for your correction and I'm sorry about my fault. I have changed model.py as you suggested.