QingyongHu / SpinNet

[CVPR 2021] SpinNet: Learning a General Surface Descriptor for 3D Point Cloud Registration
MIT License
262 stars 34 forks source link

Unauthenticated git no longer supported #24

Open khmariem opened 2 years ago

khmariem commented 2 years ago

The following command is no longer functional: pip install "git+git://github.com/erikwijmans/Pointnet2_PyTorch.git#egg=pointnet2_ops&subdirectory=pointnet2_ops_lib"

https://github.blog/2021-09-01-improving-git-protocol-security-github/

liuQuan98 commented 1 year ago

Hi there. I found it's possible to manually replicate that operation:

git clone https://github.com/erikwijmans/Pointnet2_PyTorch.git
cp -r Pointnet2_PyTorch/pointnet2_ops_lib pointnet2_ops_lib
rm -rf Pointnet2_PyTorch
pip install pointnet2_ops_lib/

Still haven't checked out the real difference (code runs exactly fine). I hope this would be helpful to the future reproduction of this paper (since it's 7 months since your comment).