├── .DS_Store ├── .gitignore ├── DeepVCP_W.Lu_S.Song_ICCV2019.pdf ├── KITTIDataset.py ├── ModelNet40Dataset.py ├── README.md ├── cpg.py ├── deepVCP.py ├── deepVCP_loss.py ├── deep_feat_embedding.py ├── deep_feat_extraction.py ├── get_cat_feat_src.py ├── get_cat_feat_tgt.py ├── loss_vis.py ├── model_eval.py ├── pointnet2_utils.py ├── print_loss.py ├── sampling_module.py ├── train.py ├── utils.py ├── vis_utils.py ├── voxelize.py └── weighting_layer.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivcheng01/DeepVCP-Pointcloud-Registration/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivcheng01/DeepVCP-Pointcloud-Registration/HEAD/.gitignore -------------------------------------------------------------------------------- /DeepVCP_W.Lu_S.Song_ICCV2019.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivcheng01/DeepVCP-Pointcloud-Registration/HEAD/DeepVCP_W.Lu_S.Song_ICCV2019.pdf -------------------------------------------------------------------------------- /KITTIDataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivcheng01/DeepVCP-Pointcloud-Registration/HEAD/KITTIDataset.py -------------------------------------------------------------------------------- /ModelNet40Dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivcheng01/DeepVCP-Pointcloud-Registration/HEAD/ModelNet40Dataset.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivcheng01/DeepVCP-Pointcloud-Registration/HEAD/README.md -------------------------------------------------------------------------------- /cpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivcheng01/DeepVCP-Pointcloud-Registration/HEAD/cpg.py -------------------------------------------------------------------------------- /deepVCP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivcheng01/DeepVCP-Pointcloud-Registration/HEAD/deepVCP.py -------------------------------------------------------------------------------- /deepVCP_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivcheng01/DeepVCP-Pointcloud-Registration/HEAD/deepVCP_loss.py -------------------------------------------------------------------------------- /deep_feat_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivcheng01/DeepVCP-Pointcloud-Registration/HEAD/deep_feat_embedding.py -------------------------------------------------------------------------------- /deep_feat_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivcheng01/DeepVCP-Pointcloud-Registration/HEAD/deep_feat_extraction.py -------------------------------------------------------------------------------- /get_cat_feat_src.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivcheng01/DeepVCP-Pointcloud-Registration/HEAD/get_cat_feat_src.py -------------------------------------------------------------------------------- /get_cat_feat_tgt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivcheng01/DeepVCP-Pointcloud-Registration/HEAD/get_cat_feat_tgt.py -------------------------------------------------------------------------------- /loss_vis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivcheng01/DeepVCP-Pointcloud-Registration/HEAD/loss_vis.py -------------------------------------------------------------------------------- /model_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivcheng01/DeepVCP-Pointcloud-Registration/HEAD/model_eval.py -------------------------------------------------------------------------------- /pointnet2_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivcheng01/DeepVCP-Pointcloud-Registration/HEAD/pointnet2_utils.py -------------------------------------------------------------------------------- /print_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivcheng01/DeepVCP-Pointcloud-Registration/HEAD/print_loss.py -------------------------------------------------------------------------------- /sampling_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivcheng01/DeepVCP-Pointcloud-Registration/HEAD/sampling_module.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivcheng01/DeepVCP-Pointcloud-Registration/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivcheng01/DeepVCP-Pointcloud-Registration/HEAD/utils.py -------------------------------------------------------------------------------- /vis_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivcheng01/DeepVCP-Pointcloud-Registration/HEAD/vis_utils.py -------------------------------------------------------------------------------- /voxelize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivcheng01/DeepVCP-Pointcloud-Registration/HEAD/voxelize.py -------------------------------------------------------------------------------- /weighting_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vivcheng01/DeepVCP-Pointcloud-Registration/HEAD/weighting_layer.py --------------------------------------------------------------------------------