Skip to content

Latest commit

 

History

History
52 lines (40 loc) · 2.4 KB

README.md

File metadata and controls

52 lines (40 loc) · 2.4 KB

ImplicitPCDA

We provide our PyTorch implementation of our paper 'Domain Adaptation on Point Clouds via Geometry-Aware Implicits' (IEEE CVPR 2022). By using geometry-awrae implicits representation, our method can align point clouds from different domains in feature space well.

Here we show point clouds from different domains in an image.

Domain Alignment

Class-wise MMD for the task: ModelNet to ScanNet in PointDA-10 dataset. Diagonal shows source-target distances of the same class. Upper and lower triangular matrices indicate distances between different classes in the source and target domain, respectively. Our method maintains class-wise distances well.

Dataset Preprocessing

For generating point clouds from GraspNet, we need to render depth maps firstly. Refer to my repo ObjsDepthRender for more information.

GraspNetPC-10

From Google Drive Link.

Usage

Environment

  • Python > 3.7
  • CUDA > 10.0

Dependencies

We suggest installing torch manually, depending on the python and CUDA versions.

pip install -r requirements.txt

Train implicits

python train.py --name $EXP_NAME --datapath_graspnet $PATH_TO_GRASPNETPC

Acknowledgements

Part of this implementations is based on DGCNN. We also thank Synchronized-BatchNorm-PyTorch for synchronized batchnorm implementation.

Note that

So far, this repo only includes the self-supervised pre-training part. As for domain adaptation, my suggestion is to use GAST which is a sufficient codebase for benchmark comparisons.

Citation

If you find this useful for your research, please cite the following paper.

@InProceedings{Shen_2022_CVPR,
    author    = {Shen, Yuefan and Yang, Yanchao and Yan, Mi and Wang, He and Zheng, Youyi and Guibas, Leonidas J.},
    title     = {Domain Adaptation on Point Clouds via Geometry-Aware Implicits},
    booktitle = {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
    month     = {June},
    year      = {2022},
    pages     = {7223-7232}
}