├── Configs ├── __init__.py ├── base_options.py ├── partnet_options.py ├── scannet_options.py └── shapenetpart_options.py ├── Datasets ├── __init__.py ├── dataset_partnet.py ├── dataset_s3dis.py ├── dataset_samplers.py ├── dataset_scannet.py ├── dataset_shapenetpart.py ├── point_clouds.py └── scene_util.py ├── Models ├── __init__.py ├── model_PN2.py ├── model_convPN.py ├── model_mRes.py └── model_utils.py ├── README.md ├── Utils ├── __init__.py └── evaluation_metrics.py ├── misc ├── pipeline.png ├── teaser1.png └── teaser2.png ├── test_shapenetpart.py └── train_shapenetpart.py /Configs/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Configs/base_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erictuanle/GoingDeeperwPointNetworks/HEAD/Configs/base_options.py -------------------------------------------------------------------------------- /Configs/partnet_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erictuanle/GoingDeeperwPointNetworks/HEAD/Configs/partnet_options.py -------------------------------------------------------------------------------- /Configs/scannet_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erictuanle/GoingDeeperwPointNetworks/HEAD/Configs/scannet_options.py -------------------------------------------------------------------------------- /Configs/shapenetpart_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erictuanle/GoingDeeperwPointNetworks/HEAD/Configs/shapenetpart_options.py -------------------------------------------------------------------------------- /Datasets/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Datasets/dataset_partnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erictuanle/GoingDeeperwPointNetworks/HEAD/Datasets/dataset_partnet.py -------------------------------------------------------------------------------- /Datasets/dataset_s3dis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erictuanle/GoingDeeperwPointNetworks/HEAD/Datasets/dataset_s3dis.py -------------------------------------------------------------------------------- /Datasets/dataset_samplers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erictuanle/GoingDeeperwPointNetworks/HEAD/Datasets/dataset_samplers.py -------------------------------------------------------------------------------- /Datasets/dataset_scannet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erictuanle/GoingDeeperwPointNetworks/HEAD/Datasets/dataset_scannet.py -------------------------------------------------------------------------------- /Datasets/dataset_shapenetpart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erictuanle/GoingDeeperwPointNetworks/HEAD/Datasets/dataset_shapenetpart.py -------------------------------------------------------------------------------- /Datasets/point_clouds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erictuanle/GoingDeeperwPointNetworks/HEAD/Datasets/point_clouds.py -------------------------------------------------------------------------------- /Datasets/scene_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erictuanle/GoingDeeperwPointNetworks/HEAD/Datasets/scene_util.py -------------------------------------------------------------------------------- /Models/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Models/model_PN2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erictuanle/GoingDeeperwPointNetworks/HEAD/Models/model_PN2.py -------------------------------------------------------------------------------- /Models/model_convPN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erictuanle/GoingDeeperwPointNetworks/HEAD/Models/model_convPN.py -------------------------------------------------------------------------------- /Models/model_mRes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erictuanle/GoingDeeperwPointNetworks/HEAD/Models/model_mRes.py -------------------------------------------------------------------------------- /Models/model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erictuanle/GoingDeeperwPointNetworks/HEAD/Models/model_utils.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erictuanle/GoingDeeperwPointNetworks/HEAD/README.md -------------------------------------------------------------------------------- /Utils/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Utils/evaluation_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erictuanle/GoingDeeperwPointNetworks/HEAD/Utils/evaluation_metrics.py -------------------------------------------------------------------------------- /misc/pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erictuanle/GoingDeeperwPointNetworks/HEAD/misc/pipeline.png -------------------------------------------------------------------------------- /misc/teaser1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erictuanle/GoingDeeperwPointNetworks/HEAD/misc/teaser1.png -------------------------------------------------------------------------------- /misc/teaser2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erictuanle/GoingDeeperwPointNetworks/HEAD/misc/teaser2.png -------------------------------------------------------------------------------- /test_shapenetpart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erictuanle/GoingDeeperwPointNetworks/HEAD/test_shapenetpart.py -------------------------------------------------------------------------------- /train_shapenetpart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erictuanle/GoingDeeperwPointNetworks/HEAD/train_shapenetpart.py --------------------------------------------------------------------------------