├── .DS_Store ├── .gitignore ├── README.md ├── point_process_piplines ├── .ipynb_checkpoints │ └── train_pointnet-checkpoint.ipynb ├── README.md ├── data_augmentation.py ├── generate_training_set.py ├── logs │ ├── 20210510-170824 │ │ ├── train │ │ │ ├── events.out.tfevents.1620655706.teamo.2799.16968603.v2 │ │ │ ├── events.out.tfevents.1620655708.teamo.profile-empty │ │ │ ├── events.out.tfevents.1620659505.teamo.2799.26939218.v2 │ │ │ └── plugins │ │ │ │ └── profile │ │ │ │ ├── 2021_05_10_17_08_28 │ │ │ │ ├── teamo.input_pipeline.pb │ │ │ │ ├── teamo.kernel_stats.pb │ │ │ │ ├── teamo.memory_profile.json.gz │ │ │ │ ├── teamo.overview_page.pb │ │ │ │ ├── teamo.tensorflow_stats.pb │ │ │ │ ├── teamo.trace.json.gz │ │ │ │ └── teamo.xplane.pb │ │ │ │ └── 2021_05_10_18_11_47 │ │ │ │ ├── teamo.input_pipeline.pb │ │ │ │ ├── teamo.kernel_stats.pb │ │ │ │ ├── teamo.memory_profile.json.gz │ │ │ │ ├── teamo.overview_page.pb │ │ │ │ ├── teamo.tensorflow_stats.pb │ │ │ │ ├── teamo.trace.json.gz │ │ │ │ └── teamo.xplane.pb │ │ └── validation │ │ │ └── events.out.tfevents.1620655898.teamo.2799.17532386.v2 │ └── 20210510-181228 │ │ ├── train │ │ ├── events.out.tfevents.1620659549.teamo.2799.26953316.v2 │ │ ├── events.out.tfevents.1620659551.teamo.profile-empty │ │ └── plugins │ │ │ └── profile │ │ │ └── 2021_05_10_18_12_31 │ │ │ ├── teamo.input_pipeline.pb │ │ │ ├── teamo.kernel_stats.pb │ │ │ ├── teamo.memory_profile.json.gz │ │ │ ├── teamo.overview_page.pb │ │ │ ├── teamo.tensorflow_stats.pb │ │ │ ├── teamo.trace.json.gz │ │ │ └── teamo.xplane.pb │ │ └── validation │ │ └── events.out.tfevents.1620659741.teamo.2799.27517099.v2 ├── object_detect.py ├── pictures │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 14.png │ ├── 15.png │ ├── 16-1620681287966.png │ ├── 16.png │ ├── 17.png │ ├── 2.png │ ├── 3.png │ ├── 7-1620666285943.png │ ├── 7-1620680667445.png │ ├── 7.png │ ├── 8.png │ ├── 9.png │ ├── Figure_1-1620308275243.png │ ├── Figure_1.png │ ├── Figure_3.png │ ├── Figure_4.png │ └── Figure_5.png ├── pointnet_model.h5 └── train_pointnet.ipynb ├── 第1章:Introduction and Basic Algorithms ├── Lecture 1.pdf ├── README.md ├── pca_normal.py ├── pictures │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ └── 5.png ├── voxel_filter.py ├── 作业说明.pdf ├── 第一章优秀作业分享_张点堃.pdf └── 第一章作业思路讲解--助教林轩竹.pdf ├── 第2章:Nearest Neighbor Problem ├── LICENSE ├── Lecture 2.pdf ├── README.md ├── __pycache__ │ ├── kdtree.cpython-37.pyc │ ├── kdtree.cpython-38.pyc │ ├── octree.cpython-37.pyc │ ├── octree.cpython-38.pyc │ ├── result_set.cpython-37.pyc │ └── result_set.cpython-38.pyc ├── benchmark.py ├── kdtree.py ├── octree.py ├── pictures │ ├── 1.png │ ├── 10.png │ ├── 11.png │ └── 2.png ├── result_set.py ├── 第二章优秀作业讲评--冯冠植.pdf ├── 第二章作业思路讲解--助教陆一帆.pdf └── 第二章作业思路讲解_助教赵勇.pdf ├── 第3章:Clustering ├── GMM.py ├── KMeans.py ├── Lecture 3.pdf ├── README.md ├── Spectral_Clustering.py ├── __pycache__ │ ├── GMM.cpython-37.pyc │ ├── KMeans.cpython-37.pyc │ └── Spectral_Clustering.cpython-37.pyc ├── compare_cluster.py ├── pictures │ ├── 1.png │ ├── 10.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ └── 9.png └── 【讲评】作业第三讲思路讲解--助教林轩竹.pdf ├── 第4章:Model Fitting ├── README.md ├── clustering.py ├── pictures │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ └── 5.png ├── 张点堃-第四章作业分享.pdf └── 第4章思路讲解--助教陆一帆.pdf ├── 第5章:Deep Learning on Point Cloud ├── README.md ├── pointnet(pytorch).ipynb └── pointnet(tensorflow).ipynb ├── 第6章:3D Object Detection ├── .DS_Store ├── .gitignore ├── Lang_PointPillars_Fast_Encoders_for_Object_Detection_From_Point_Clouds_CVPR_2019_paper.pdf ├── PointCloudLecture6.pdf ├── README.md ├── generate_result.ipynb ├── pictures │ └── 1.PNG ├── results_PointRCNN │ ├── .DS_Store │ └── result_sha │ │ ├── .DS_Store │ │ ├── plot │ │ ├── car_detection.eps │ │ ├── car_detection.gp │ │ ├── car_detection.pdf │ │ ├── car_detection.png │ │ ├── car_detection.txt │ │ ├── car_detection_3d.eps │ │ ├── car_detection_3d.gp │ │ ├── car_detection_3d.pdf │ │ ├── car_detection_3d.png │ │ ├── car_detection_3d.txt │ │ ├── car_detection_ground.eps │ │ ├── car_detection_ground.gp │ │ ├── car_detection_ground.pdf │ │ ├── car_detection_ground.png │ │ ├── car_detection_ground.txt │ │ ├── car_orientation.eps │ │ ├── car_orientation.gp │ │ ├── car_orientation.pdf │ │ ├── car_orientation.png │ │ └── car_orientation.txt │ │ ├── stats_car_detection.txt │ │ ├── stats_car_detection_3d.txt │ │ ├── stats_car_detection_ground.txt │ │ └── stats_car_orientation.txt ├── results_sim │ └── result_sha │ │ ├── plot │ │ ├── car_detection.eps │ │ ├── car_detection.gp │ │ ├── car_detection.pdf │ │ ├── car_detection.png │ │ ├── car_detection.txt │ │ ├── car_detection_3d.eps │ │ ├── car_detection_3d.gp │ │ ├── car_detection_3d.pdf │ │ ├── car_detection_3d.png │ │ ├── car_detection_3d.txt │ │ ├── car_detection_ground.eps │ │ ├── car_detection_ground.gp │ │ ├── car_detection_ground.pdf │ │ ├── car_detection_ground.png │ │ ├── car_detection_ground.txt │ │ ├── cyclist_detection.eps │ │ ├── cyclist_detection.gp │ │ ├── cyclist_detection.pdf │ │ ├── cyclist_detection.png │ │ ├── cyclist_detection.txt │ │ ├── cyclist_detection_3d.eps │ │ ├── cyclist_detection_3d.gp │ │ ├── cyclist_detection_3d.pdf │ │ ├── cyclist_detection_3d.png │ │ ├── cyclist_detection_3d.txt │ │ ├── cyclist_detection_ground.eps │ │ ├── cyclist_detection_ground.gp │ │ ├── cyclist_detection_ground.pdf │ │ ├── cyclist_detection_ground.png │ │ ├── cyclist_detection_ground.txt │ │ ├── pedestrian_detection.eps │ │ ├── pedestrian_detection.gp │ │ ├── pedestrian_detection.pdf │ │ ├── pedestrian_detection.png │ │ ├── pedestrian_detection.txt │ │ ├── pedestrian_detection_3d.eps │ │ ├── pedestrian_detection_3d.gp │ │ ├── pedestrian_detection_3d.pdf │ │ ├── pedestrian_detection_3d.png │ │ ├── pedestrian_detection_3d.txt │ │ ├── pedestrian_detection_ground.eps │ │ ├── pedestrian_detection_ground.gp │ │ ├── pedestrian_detection_ground.pdf │ │ ├── pedestrian_detection_ground.png │ │ └── pedestrian_detection_ground.txt │ │ ├── stats_car_detection.txt │ │ ├── stats_car_detection_3d.txt │ │ ├── stats_car_detection_ground.txt │ │ ├── stats_cyclist_detection.txt │ │ ├── stats_cyclist_detection_3d.txt │ │ ├── stats_cyclist_detection_ground.txt │ │ ├── stats_pedestrian_detection.txt │ │ ├── stats_pedestrian_detection_3d.txt │ │ └── stats_pedestrian_detection_ground.txt ├── 张点堃-第六章作业分享.pdf └── 第六章作业思路讲解--助教林轩竹.pdf ├── 第7章:3D Feature Detection ├── ISS.py ├── PointCloudLecture7.pdf ├── README.md ├── pictures │ ├── 1.png │ ├── 2.png │ └── 3.png └── 第七章思路讲解--助教林轩竹.pdf ├── 第8章:3D Feature Description ├── .DS_Store ├── FPFH.py ├── PointCloudLecture8.pdf ├── README.md └── pictures │ ├── 1.png │ └── 2.png └── 第9章:Registration ├── .DS_Store ├── .gitignore ├── PointCloudLecture9.pdf ├── README.md ├── Registration.py ├── Registration_o3d.py ├── pictures ├── 2.png ├── 3.png └── 4.png ├── registration_dataset ├── .DS_Store ├── evaluate_rt.py ├── reg_result.txt ├── reg_result_teamo.txt └── reg_result_teamo1998_test.txt └── tools ├── FPFH.py ├── IO.py ├── ISS.py ├── RANSAC.py ├── __init__.py └── __pycache__ ├── FPFH.cpython-36.pyc ├── FPFH.cpython-37.pyc ├── IO.cpython-36.pyc ├── IO.cpython-37.pyc ├── ISS.cpython-36.pyc ├── ISS.cpython-37.pyc ├── RANSAC.cpython-36.pyc ├── RANSAC.cpython-37.pyc ├── __init__.cpython-36.pyc └── __init__.cpython-37.pyc /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Point-cloud-process 2 | 深蓝三维点云处理课程 3 | -------------------------------------------------------------------------------- /point_process_piplines/.ipynb_checkpoints/train_pointnet-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/.ipynb_checkpoints/train_pointnet-checkpoint.ipynb -------------------------------------------------------------------------------- /point_process_piplines/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/README.md -------------------------------------------------------------------------------- /point_process_piplines/data_augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/data_augmentation.py -------------------------------------------------------------------------------- /point_process_piplines/generate_training_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/generate_training_set.py -------------------------------------------------------------------------------- /point_process_piplines/logs/20210510-170824/train/events.out.tfevents.1620655706.teamo.2799.16968603.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/logs/20210510-170824/train/events.out.tfevents.1620655706.teamo.2799.16968603.v2 -------------------------------------------------------------------------------- /point_process_piplines/logs/20210510-170824/train/events.out.tfevents.1620655708.teamo.profile-empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/logs/20210510-170824/train/events.out.tfevents.1620655708.teamo.profile-empty -------------------------------------------------------------------------------- /point_process_piplines/logs/20210510-170824/train/events.out.tfevents.1620659505.teamo.2799.26939218.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/logs/20210510-170824/train/events.out.tfevents.1620659505.teamo.2799.26939218.v2 -------------------------------------------------------------------------------- /point_process_piplines/logs/20210510-170824/train/plugins/profile/2021_05_10_17_08_28/teamo.input_pipeline.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/logs/20210510-170824/train/plugins/profile/2021_05_10_17_08_28/teamo.input_pipeline.pb -------------------------------------------------------------------------------- /point_process_piplines/logs/20210510-170824/train/plugins/profile/2021_05_10_17_08_28/teamo.kernel_stats.pb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /point_process_piplines/logs/20210510-170824/train/plugins/profile/2021_05_10_17_08_28/teamo.memory_profile.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/logs/20210510-170824/train/plugins/profile/2021_05_10_17_08_28/teamo.memory_profile.json.gz -------------------------------------------------------------------------------- /point_process_piplines/logs/20210510-170824/train/plugins/profile/2021_05_10_17_08_28/teamo.overview_page.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/logs/20210510-170824/train/plugins/profile/2021_05_10_17_08_28/teamo.overview_page.pb -------------------------------------------------------------------------------- /point_process_piplines/logs/20210510-170824/train/plugins/profile/2021_05_10_17_08_28/teamo.tensorflow_stats.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/logs/20210510-170824/train/plugins/profile/2021_05_10_17_08_28/teamo.tensorflow_stats.pb -------------------------------------------------------------------------------- /point_process_piplines/logs/20210510-170824/train/plugins/profile/2021_05_10_17_08_28/teamo.trace.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/logs/20210510-170824/train/plugins/profile/2021_05_10_17_08_28/teamo.trace.json.gz -------------------------------------------------------------------------------- /point_process_piplines/logs/20210510-170824/train/plugins/profile/2021_05_10_17_08_28/teamo.xplane.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/logs/20210510-170824/train/plugins/profile/2021_05_10_17_08_28/teamo.xplane.pb -------------------------------------------------------------------------------- /point_process_piplines/logs/20210510-170824/train/plugins/profile/2021_05_10_18_11_47/teamo.input_pipeline.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/logs/20210510-170824/train/plugins/profile/2021_05_10_18_11_47/teamo.input_pipeline.pb -------------------------------------------------------------------------------- /point_process_piplines/logs/20210510-170824/train/plugins/profile/2021_05_10_18_11_47/teamo.kernel_stats.pb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /point_process_piplines/logs/20210510-170824/train/plugins/profile/2021_05_10_18_11_47/teamo.memory_profile.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/logs/20210510-170824/train/plugins/profile/2021_05_10_18_11_47/teamo.memory_profile.json.gz -------------------------------------------------------------------------------- /point_process_piplines/logs/20210510-170824/train/plugins/profile/2021_05_10_18_11_47/teamo.overview_page.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/logs/20210510-170824/train/plugins/profile/2021_05_10_18_11_47/teamo.overview_page.pb -------------------------------------------------------------------------------- /point_process_piplines/logs/20210510-170824/train/plugins/profile/2021_05_10_18_11_47/teamo.tensorflow_stats.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/logs/20210510-170824/train/plugins/profile/2021_05_10_18_11_47/teamo.tensorflow_stats.pb -------------------------------------------------------------------------------- /point_process_piplines/logs/20210510-170824/train/plugins/profile/2021_05_10_18_11_47/teamo.trace.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/logs/20210510-170824/train/plugins/profile/2021_05_10_18_11_47/teamo.trace.json.gz -------------------------------------------------------------------------------- /point_process_piplines/logs/20210510-170824/train/plugins/profile/2021_05_10_18_11_47/teamo.xplane.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/logs/20210510-170824/train/plugins/profile/2021_05_10_18_11_47/teamo.xplane.pb -------------------------------------------------------------------------------- /point_process_piplines/logs/20210510-170824/validation/events.out.tfevents.1620655898.teamo.2799.17532386.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/logs/20210510-170824/validation/events.out.tfevents.1620655898.teamo.2799.17532386.v2 -------------------------------------------------------------------------------- /point_process_piplines/logs/20210510-181228/train/events.out.tfevents.1620659549.teamo.2799.26953316.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/logs/20210510-181228/train/events.out.tfevents.1620659549.teamo.2799.26953316.v2 -------------------------------------------------------------------------------- /point_process_piplines/logs/20210510-181228/train/events.out.tfevents.1620659551.teamo.profile-empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/logs/20210510-181228/train/events.out.tfevents.1620659551.teamo.profile-empty -------------------------------------------------------------------------------- /point_process_piplines/logs/20210510-181228/train/plugins/profile/2021_05_10_18_12_31/teamo.input_pipeline.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/logs/20210510-181228/train/plugins/profile/2021_05_10_18_12_31/teamo.input_pipeline.pb -------------------------------------------------------------------------------- /point_process_piplines/logs/20210510-181228/train/plugins/profile/2021_05_10_18_12_31/teamo.kernel_stats.pb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /point_process_piplines/logs/20210510-181228/train/plugins/profile/2021_05_10_18_12_31/teamo.memory_profile.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/logs/20210510-181228/train/plugins/profile/2021_05_10_18_12_31/teamo.memory_profile.json.gz -------------------------------------------------------------------------------- /point_process_piplines/logs/20210510-181228/train/plugins/profile/2021_05_10_18_12_31/teamo.overview_page.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/logs/20210510-181228/train/plugins/profile/2021_05_10_18_12_31/teamo.overview_page.pb -------------------------------------------------------------------------------- /point_process_piplines/logs/20210510-181228/train/plugins/profile/2021_05_10_18_12_31/teamo.tensorflow_stats.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/logs/20210510-181228/train/plugins/profile/2021_05_10_18_12_31/teamo.tensorflow_stats.pb -------------------------------------------------------------------------------- /point_process_piplines/logs/20210510-181228/train/plugins/profile/2021_05_10_18_12_31/teamo.trace.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/logs/20210510-181228/train/plugins/profile/2021_05_10_18_12_31/teamo.trace.json.gz -------------------------------------------------------------------------------- /point_process_piplines/logs/20210510-181228/train/plugins/profile/2021_05_10_18_12_31/teamo.xplane.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/logs/20210510-181228/train/plugins/profile/2021_05_10_18_12_31/teamo.xplane.pb -------------------------------------------------------------------------------- /point_process_piplines/logs/20210510-181228/validation/events.out.tfevents.1620659741.teamo.2799.27517099.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/logs/20210510-181228/validation/events.out.tfevents.1620659741.teamo.2799.27517099.v2 -------------------------------------------------------------------------------- /point_process_piplines/object_detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/object_detect.py -------------------------------------------------------------------------------- /point_process_piplines/pictures/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/pictures/1.png -------------------------------------------------------------------------------- /point_process_piplines/pictures/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/pictures/10.png -------------------------------------------------------------------------------- /point_process_piplines/pictures/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/pictures/11.png -------------------------------------------------------------------------------- /point_process_piplines/pictures/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/pictures/12.png -------------------------------------------------------------------------------- /point_process_piplines/pictures/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/pictures/13.png -------------------------------------------------------------------------------- /point_process_piplines/pictures/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/pictures/14.png -------------------------------------------------------------------------------- /point_process_piplines/pictures/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/pictures/15.png -------------------------------------------------------------------------------- /point_process_piplines/pictures/16-1620681287966.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/pictures/16-1620681287966.png -------------------------------------------------------------------------------- /point_process_piplines/pictures/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/pictures/16.png -------------------------------------------------------------------------------- /point_process_piplines/pictures/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/pictures/17.png -------------------------------------------------------------------------------- /point_process_piplines/pictures/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/pictures/2.png -------------------------------------------------------------------------------- /point_process_piplines/pictures/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/pictures/3.png -------------------------------------------------------------------------------- /point_process_piplines/pictures/7-1620666285943.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/pictures/7-1620666285943.png -------------------------------------------------------------------------------- /point_process_piplines/pictures/7-1620680667445.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/pictures/7-1620680667445.png -------------------------------------------------------------------------------- /point_process_piplines/pictures/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/pictures/7.png -------------------------------------------------------------------------------- /point_process_piplines/pictures/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/pictures/8.png -------------------------------------------------------------------------------- /point_process_piplines/pictures/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/pictures/9.png -------------------------------------------------------------------------------- /point_process_piplines/pictures/Figure_1-1620308275243.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/pictures/Figure_1-1620308275243.png -------------------------------------------------------------------------------- /point_process_piplines/pictures/Figure_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/pictures/Figure_1.png -------------------------------------------------------------------------------- /point_process_piplines/pictures/Figure_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/pictures/Figure_3.png -------------------------------------------------------------------------------- /point_process_piplines/pictures/Figure_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/pictures/Figure_4.png -------------------------------------------------------------------------------- /point_process_piplines/pictures/Figure_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/pictures/Figure_5.png -------------------------------------------------------------------------------- /point_process_piplines/pointnet_model.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/pointnet_model.h5 -------------------------------------------------------------------------------- /point_process_piplines/train_pointnet.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/point_process_piplines/train_pointnet.ipynb -------------------------------------------------------------------------------- /第1章:Introduction and Basic Algorithms/Lecture 1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第1章:Introduction and Basic Algorithms/Lecture 1.pdf -------------------------------------------------------------------------------- /第1章:Introduction and Basic Algorithms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第1章:Introduction and Basic Algorithms/README.md -------------------------------------------------------------------------------- /第1章:Introduction and Basic Algorithms/pca_normal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第1章:Introduction and Basic Algorithms/pca_normal.py -------------------------------------------------------------------------------- /第1章:Introduction and Basic Algorithms/pictures/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第1章:Introduction and Basic Algorithms/pictures/1.png -------------------------------------------------------------------------------- /第1章:Introduction and Basic Algorithms/pictures/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第1章:Introduction and Basic Algorithms/pictures/2.png -------------------------------------------------------------------------------- /第1章:Introduction and Basic Algorithms/pictures/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第1章:Introduction and Basic Algorithms/pictures/3.png -------------------------------------------------------------------------------- /第1章:Introduction and Basic Algorithms/pictures/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第1章:Introduction and Basic Algorithms/pictures/4.png -------------------------------------------------------------------------------- /第1章:Introduction and Basic Algorithms/pictures/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第1章:Introduction and Basic Algorithms/pictures/5.png -------------------------------------------------------------------------------- /第1章:Introduction and Basic Algorithms/voxel_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第1章:Introduction and Basic Algorithms/voxel_filter.py -------------------------------------------------------------------------------- /第1章:Introduction and Basic Algorithms/作业说明.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第1章:Introduction and Basic Algorithms/作业说明.pdf -------------------------------------------------------------------------------- /第1章:Introduction and Basic Algorithms/第一章优秀作业分享_张点堃.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第1章:Introduction and Basic Algorithms/第一章优秀作业分享_张点堃.pdf -------------------------------------------------------------------------------- /第1章:Introduction and Basic Algorithms/第一章作业思路讲解--助教林轩竹.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第1章:Introduction and Basic Algorithms/第一章作业思路讲解--助教林轩竹.pdf -------------------------------------------------------------------------------- /第2章:Nearest Neighbor Problem/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第2章:Nearest Neighbor Problem/LICENSE -------------------------------------------------------------------------------- /第2章:Nearest Neighbor Problem/Lecture 2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第2章:Nearest Neighbor Problem/Lecture 2.pdf -------------------------------------------------------------------------------- /第2章:Nearest Neighbor Problem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第2章:Nearest Neighbor Problem/README.md -------------------------------------------------------------------------------- /第2章:Nearest Neighbor Problem/__pycache__/kdtree.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第2章:Nearest Neighbor Problem/__pycache__/kdtree.cpython-37.pyc -------------------------------------------------------------------------------- /第2章:Nearest Neighbor Problem/__pycache__/kdtree.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第2章:Nearest Neighbor Problem/__pycache__/kdtree.cpython-38.pyc -------------------------------------------------------------------------------- /第2章:Nearest Neighbor Problem/__pycache__/octree.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第2章:Nearest Neighbor Problem/__pycache__/octree.cpython-37.pyc -------------------------------------------------------------------------------- /第2章:Nearest Neighbor Problem/__pycache__/octree.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第2章:Nearest Neighbor Problem/__pycache__/octree.cpython-38.pyc -------------------------------------------------------------------------------- /第2章:Nearest Neighbor Problem/__pycache__/result_set.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第2章:Nearest Neighbor Problem/__pycache__/result_set.cpython-37.pyc -------------------------------------------------------------------------------- /第2章:Nearest Neighbor Problem/__pycache__/result_set.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第2章:Nearest Neighbor Problem/__pycache__/result_set.cpython-38.pyc -------------------------------------------------------------------------------- /第2章:Nearest Neighbor Problem/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第2章:Nearest Neighbor Problem/benchmark.py -------------------------------------------------------------------------------- /第2章:Nearest Neighbor Problem/kdtree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第2章:Nearest Neighbor Problem/kdtree.py -------------------------------------------------------------------------------- /第2章:Nearest Neighbor Problem/octree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第2章:Nearest Neighbor Problem/octree.py -------------------------------------------------------------------------------- /第2章:Nearest Neighbor Problem/pictures/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第2章:Nearest Neighbor Problem/pictures/1.png -------------------------------------------------------------------------------- /第2章:Nearest Neighbor Problem/pictures/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第2章:Nearest Neighbor Problem/pictures/10.png -------------------------------------------------------------------------------- /第2章:Nearest Neighbor Problem/pictures/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第2章:Nearest Neighbor Problem/pictures/11.png -------------------------------------------------------------------------------- /第2章:Nearest Neighbor Problem/pictures/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第2章:Nearest Neighbor Problem/pictures/2.png -------------------------------------------------------------------------------- /第2章:Nearest Neighbor Problem/result_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第2章:Nearest Neighbor Problem/result_set.py -------------------------------------------------------------------------------- /第2章:Nearest Neighbor Problem/第二章优秀作业讲评--冯冠植.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第2章:Nearest Neighbor Problem/第二章优秀作业讲评--冯冠植.pdf -------------------------------------------------------------------------------- /第2章:Nearest Neighbor Problem/第二章作业思路讲解--助教陆一帆.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第2章:Nearest Neighbor Problem/第二章作业思路讲解--助教陆一帆.pdf -------------------------------------------------------------------------------- /第2章:Nearest Neighbor Problem/第二章作业思路讲解_助教赵勇.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第2章:Nearest Neighbor Problem/第二章作业思路讲解_助教赵勇.pdf -------------------------------------------------------------------------------- /第3章:Clustering/GMM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第3章:Clustering/GMM.py -------------------------------------------------------------------------------- /第3章:Clustering/KMeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第3章:Clustering/KMeans.py -------------------------------------------------------------------------------- /第3章:Clustering/Lecture 3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第3章:Clustering/Lecture 3.pdf -------------------------------------------------------------------------------- /第3章:Clustering/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第3章:Clustering/README.md -------------------------------------------------------------------------------- /第3章:Clustering/Spectral_Clustering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第3章:Clustering/Spectral_Clustering.py -------------------------------------------------------------------------------- /第3章:Clustering/__pycache__/GMM.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第3章:Clustering/__pycache__/GMM.cpython-37.pyc -------------------------------------------------------------------------------- /第3章:Clustering/__pycache__/KMeans.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第3章:Clustering/__pycache__/KMeans.cpython-37.pyc -------------------------------------------------------------------------------- /第3章:Clustering/__pycache__/Spectral_Clustering.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第3章:Clustering/__pycache__/Spectral_Clustering.cpython-37.pyc -------------------------------------------------------------------------------- /第3章:Clustering/compare_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第3章:Clustering/compare_cluster.py -------------------------------------------------------------------------------- /第3章:Clustering/pictures/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第3章:Clustering/pictures/1.png -------------------------------------------------------------------------------- /第3章:Clustering/pictures/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第3章:Clustering/pictures/10.png -------------------------------------------------------------------------------- /第3章:Clustering/pictures/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第3章:Clustering/pictures/2.png -------------------------------------------------------------------------------- /第3章:Clustering/pictures/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第3章:Clustering/pictures/3.png -------------------------------------------------------------------------------- /第3章:Clustering/pictures/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第3章:Clustering/pictures/4.png -------------------------------------------------------------------------------- /第3章:Clustering/pictures/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第3章:Clustering/pictures/5.png -------------------------------------------------------------------------------- /第3章:Clustering/pictures/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第3章:Clustering/pictures/6.png -------------------------------------------------------------------------------- /第3章:Clustering/pictures/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第3章:Clustering/pictures/7.png -------------------------------------------------------------------------------- /第3章:Clustering/pictures/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第3章:Clustering/pictures/8.png -------------------------------------------------------------------------------- /第3章:Clustering/pictures/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第3章:Clustering/pictures/9.png -------------------------------------------------------------------------------- /第3章:Clustering/【讲评】作业第三讲思路讲解--助教林轩竹.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第3章:Clustering/【讲评】作业第三讲思路讲解--助教林轩竹.pdf -------------------------------------------------------------------------------- /第4章:Model Fitting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第4章:Model Fitting/README.md -------------------------------------------------------------------------------- /第4章:Model Fitting/clustering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第4章:Model Fitting/clustering.py -------------------------------------------------------------------------------- /第4章:Model Fitting/pictures/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第4章:Model Fitting/pictures/1.png -------------------------------------------------------------------------------- /第4章:Model Fitting/pictures/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第4章:Model Fitting/pictures/2.png -------------------------------------------------------------------------------- /第4章:Model Fitting/pictures/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第4章:Model Fitting/pictures/3.png -------------------------------------------------------------------------------- /第4章:Model Fitting/pictures/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第4章:Model Fitting/pictures/4.png -------------------------------------------------------------------------------- /第4章:Model Fitting/pictures/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第4章:Model Fitting/pictures/5.png -------------------------------------------------------------------------------- /第4章:Model Fitting/张点堃-第四章作业分享.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第4章:Model Fitting/张点堃-第四章作业分享.pdf -------------------------------------------------------------------------------- /第4章:Model Fitting/第4章思路讲解--助教陆一帆.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第4章:Model Fitting/第4章思路讲解--助教陆一帆.pdf -------------------------------------------------------------------------------- /第5章:Deep Learning on Point Cloud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第5章:Deep Learning on Point Cloud/README.md -------------------------------------------------------------------------------- /第5章:Deep Learning on Point Cloud/pointnet(pytorch).ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第5章:Deep Learning on Point Cloud/pointnet(pytorch).ipynb -------------------------------------------------------------------------------- /第5章:Deep Learning on Point Cloud/pointnet(tensorflow).ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第5章:Deep Learning on Point Cloud/pointnet(tensorflow).ipynb -------------------------------------------------------------------------------- /第6章:3D Object Detection/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/.DS_Store -------------------------------------------------------------------------------- /第6章:3D Object Detection/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/.gitignore -------------------------------------------------------------------------------- /第6章:3D Object Detection/Lang_PointPillars_Fast_Encoders_for_Object_Detection_From_Point_Clouds_CVPR_2019_paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/Lang_PointPillars_Fast_Encoders_for_Object_Detection_From_Point_Clouds_CVPR_2019_paper.pdf -------------------------------------------------------------------------------- /第6章:3D Object Detection/PointCloudLecture6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/PointCloudLecture6.pdf -------------------------------------------------------------------------------- /第6章:3D Object Detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/README.md -------------------------------------------------------------------------------- /第6章:3D Object Detection/generate_result.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/generate_result.ipynb -------------------------------------------------------------------------------- /第6章:3D Object Detection/pictures/1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/pictures/1.PNG -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_PointRCNN/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_PointRCNN/.DS_Store -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_PointRCNN/result_sha/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_PointRCNN/result_sha/.DS_Store -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_PointRCNN/result_sha/plot/car_detection.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_PointRCNN/result_sha/plot/car_detection.eps -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_PointRCNN/result_sha/plot/car_detection.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_PointRCNN/result_sha/plot/car_detection.gp -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_PointRCNN/result_sha/plot/car_detection.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_PointRCNN/result_sha/plot/car_detection.pdf -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_PointRCNN/result_sha/plot/car_detection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_PointRCNN/result_sha/plot/car_detection.png -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_PointRCNN/result_sha/plot/car_detection.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_PointRCNN/result_sha/plot/car_detection.txt -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_PointRCNN/result_sha/plot/car_detection_3d.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_PointRCNN/result_sha/plot/car_detection_3d.eps -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_PointRCNN/result_sha/plot/car_detection_3d.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_PointRCNN/result_sha/plot/car_detection_3d.gp -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_PointRCNN/result_sha/plot/car_detection_3d.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_PointRCNN/result_sha/plot/car_detection_3d.pdf -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_PointRCNN/result_sha/plot/car_detection_3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_PointRCNN/result_sha/plot/car_detection_3d.png -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_PointRCNN/result_sha/plot/car_detection_3d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_PointRCNN/result_sha/plot/car_detection_3d.txt -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_PointRCNN/result_sha/plot/car_detection_ground.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_PointRCNN/result_sha/plot/car_detection_ground.eps -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_PointRCNN/result_sha/plot/car_detection_ground.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_PointRCNN/result_sha/plot/car_detection_ground.gp -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_PointRCNN/result_sha/plot/car_detection_ground.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_PointRCNN/result_sha/plot/car_detection_ground.pdf -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_PointRCNN/result_sha/plot/car_detection_ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_PointRCNN/result_sha/plot/car_detection_ground.png -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_PointRCNN/result_sha/plot/car_detection_ground.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_PointRCNN/result_sha/plot/car_detection_ground.txt -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_PointRCNN/result_sha/plot/car_orientation.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_PointRCNN/result_sha/plot/car_orientation.eps -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_PointRCNN/result_sha/plot/car_orientation.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_PointRCNN/result_sha/plot/car_orientation.gp -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_PointRCNN/result_sha/plot/car_orientation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_PointRCNN/result_sha/plot/car_orientation.pdf -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_PointRCNN/result_sha/plot/car_orientation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_PointRCNN/result_sha/plot/car_orientation.png -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_PointRCNN/result_sha/plot/car_orientation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_PointRCNN/result_sha/plot/car_orientation.txt -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_PointRCNN/result_sha/stats_car_detection.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_PointRCNN/result_sha/stats_car_detection.txt -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_PointRCNN/result_sha/stats_car_detection_3d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_PointRCNN/result_sha/stats_car_detection_3d.txt -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_PointRCNN/result_sha/stats_car_detection_ground.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_PointRCNN/result_sha/stats_car_detection_ground.txt -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_PointRCNN/result_sha/stats_car_orientation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_PointRCNN/result_sha/stats_car_orientation.txt -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/car_detection.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/car_detection.eps -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/car_detection.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/car_detection.gp -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/car_detection.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/car_detection.pdf -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/car_detection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/car_detection.png -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/car_detection.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/car_detection.txt -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/car_detection_3d.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/car_detection_3d.eps -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/car_detection_3d.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/car_detection_3d.gp -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/car_detection_3d.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/car_detection_3d.pdf -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/car_detection_3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/car_detection_3d.png -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/car_detection_3d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/car_detection_3d.txt -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/car_detection_ground.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/car_detection_ground.eps -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/car_detection_ground.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/car_detection_ground.gp -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/car_detection_ground.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/car_detection_ground.pdf -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/car_detection_ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/car_detection_ground.png -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/car_detection_ground.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/car_detection_ground.txt -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/cyclist_detection.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/cyclist_detection.eps -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/cyclist_detection.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/cyclist_detection.gp -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/cyclist_detection.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/cyclist_detection.pdf -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/cyclist_detection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/cyclist_detection.png -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/cyclist_detection.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/cyclist_detection.txt -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/cyclist_detection_3d.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/cyclist_detection_3d.eps -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/cyclist_detection_3d.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/cyclist_detection_3d.gp -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/cyclist_detection_3d.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/cyclist_detection_3d.pdf -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/cyclist_detection_3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/cyclist_detection_3d.png -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/cyclist_detection_3d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/cyclist_detection_3d.txt -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/cyclist_detection_ground.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/cyclist_detection_ground.eps -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/cyclist_detection_ground.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/cyclist_detection_ground.gp -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/cyclist_detection_ground.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/cyclist_detection_ground.pdf -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/cyclist_detection_ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/cyclist_detection_ground.png -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/cyclist_detection_ground.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/cyclist_detection_ground.txt -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/pedestrian_detection.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/pedestrian_detection.eps -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/pedestrian_detection.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/pedestrian_detection.gp -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/pedestrian_detection.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/pedestrian_detection.pdf -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/pedestrian_detection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/pedestrian_detection.png -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/pedestrian_detection.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/pedestrian_detection.txt -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/pedestrian_detection_3d.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/pedestrian_detection_3d.eps -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/pedestrian_detection_3d.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/pedestrian_detection_3d.gp -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/pedestrian_detection_3d.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/pedestrian_detection_3d.pdf -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/pedestrian_detection_3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/pedestrian_detection_3d.png -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/pedestrian_detection_3d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/pedestrian_detection_3d.txt -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/pedestrian_detection_ground.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/pedestrian_detection_ground.eps -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/pedestrian_detection_ground.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/pedestrian_detection_ground.gp -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/pedestrian_detection_ground.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/pedestrian_detection_ground.pdf -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/pedestrian_detection_ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/pedestrian_detection_ground.png -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/plot/pedestrian_detection_ground.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/plot/pedestrian_detection_ground.txt -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/stats_car_detection.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/stats_car_detection.txt -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/stats_car_detection_3d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/stats_car_detection_3d.txt -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/stats_car_detection_ground.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/stats_car_detection_ground.txt -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/stats_cyclist_detection.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/stats_cyclist_detection.txt -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/stats_cyclist_detection_3d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/stats_cyclist_detection_3d.txt -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/stats_cyclist_detection_ground.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/stats_cyclist_detection_ground.txt -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/stats_pedestrian_detection.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/stats_pedestrian_detection.txt -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/stats_pedestrian_detection_3d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/stats_pedestrian_detection_3d.txt -------------------------------------------------------------------------------- /第6章:3D Object Detection/results_sim/result_sha/stats_pedestrian_detection_ground.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/results_sim/result_sha/stats_pedestrian_detection_ground.txt -------------------------------------------------------------------------------- /第6章:3D Object Detection/张点堃-第六章作业分享.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/张点堃-第六章作业分享.pdf -------------------------------------------------------------------------------- /第6章:3D Object Detection/第六章作业思路讲解--助教林轩竹.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第6章:3D Object Detection/第六章作业思路讲解--助教林轩竹.pdf -------------------------------------------------------------------------------- /第7章:3D Feature Detection/ISS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第7章:3D Feature Detection/ISS.py -------------------------------------------------------------------------------- /第7章:3D Feature Detection/PointCloudLecture7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第7章:3D Feature Detection/PointCloudLecture7.pdf -------------------------------------------------------------------------------- /第7章:3D Feature Detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第7章:3D Feature Detection/README.md -------------------------------------------------------------------------------- /第7章:3D Feature Detection/pictures/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第7章:3D Feature Detection/pictures/1.png -------------------------------------------------------------------------------- /第7章:3D Feature Detection/pictures/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第7章:3D Feature Detection/pictures/2.png -------------------------------------------------------------------------------- /第7章:3D Feature Detection/pictures/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第7章:3D Feature Detection/pictures/3.png -------------------------------------------------------------------------------- /第7章:3D Feature Detection/第七章思路讲解--助教林轩竹.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第7章:3D Feature Detection/第七章思路讲解--助教林轩竹.pdf -------------------------------------------------------------------------------- /第8章:3D Feature Description/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第8章:3D Feature Description/.DS_Store -------------------------------------------------------------------------------- /第8章:3D Feature Description/FPFH.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第8章:3D Feature Description/FPFH.py -------------------------------------------------------------------------------- /第8章:3D Feature Description/PointCloudLecture8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第8章:3D Feature Description/PointCloudLecture8.pdf -------------------------------------------------------------------------------- /第8章:3D Feature Description/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第8章:3D Feature Description/README.md -------------------------------------------------------------------------------- /第8章:3D Feature Description/pictures/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第8章:3D Feature Description/pictures/1.png -------------------------------------------------------------------------------- /第8章:3D Feature Description/pictures/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第8章:3D Feature Description/pictures/2.png -------------------------------------------------------------------------------- /第9章:Registration/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第9章:Registration/.DS_Store -------------------------------------------------------------------------------- /第9章:Registration/.gitignore: -------------------------------------------------------------------------------- 1 | registration_dataset/point_clouds -------------------------------------------------------------------------------- /第9章:Registration/PointCloudLecture9.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第9章:Registration/PointCloudLecture9.pdf -------------------------------------------------------------------------------- /第9章:Registration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第9章:Registration/README.md -------------------------------------------------------------------------------- /第9章:Registration/Registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第9章:Registration/Registration.py -------------------------------------------------------------------------------- /第9章:Registration/Registration_o3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第9章:Registration/Registration_o3d.py -------------------------------------------------------------------------------- /第9章:Registration/pictures/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第9章:Registration/pictures/2.png -------------------------------------------------------------------------------- /第9章:Registration/pictures/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第9章:Registration/pictures/3.png -------------------------------------------------------------------------------- /第9章:Registration/pictures/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第9章:Registration/pictures/4.png -------------------------------------------------------------------------------- /第9章:Registration/registration_dataset/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第9章:Registration/registration_dataset/.DS_Store -------------------------------------------------------------------------------- /第9章:Registration/registration_dataset/evaluate_rt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第9章:Registration/registration_dataset/evaluate_rt.py -------------------------------------------------------------------------------- /第9章:Registration/registration_dataset/reg_result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第9章:Registration/registration_dataset/reg_result.txt -------------------------------------------------------------------------------- /第9章:Registration/registration_dataset/reg_result_teamo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第9章:Registration/registration_dataset/reg_result_teamo.txt -------------------------------------------------------------------------------- /第9章:Registration/registration_dataset/reg_result_teamo1998_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第9章:Registration/registration_dataset/reg_result_teamo1998_test.txt -------------------------------------------------------------------------------- /第9章:Registration/tools/FPFH.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第9章:Registration/tools/FPFH.py -------------------------------------------------------------------------------- /第9章:Registration/tools/IO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第9章:Registration/tools/IO.py -------------------------------------------------------------------------------- /第9章:Registration/tools/ISS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第9章:Registration/tools/ISS.py -------------------------------------------------------------------------------- /第9章:Registration/tools/RANSAC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第9章:Registration/tools/RANSAC.py -------------------------------------------------------------------------------- /第9章:Registration/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /第9章:Registration/tools/__pycache__/FPFH.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第9章:Registration/tools/__pycache__/FPFH.cpython-36.pyc -------------------------------------------------------------------------------- /第9章:Registration/tools/__pycache__/FPFH.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第9章:Registration/tools/__pycache__/FPFH.cpython-37.pyc -------------------------------------------------------------------------------- /第9章:Registration/tools/__pycache__/IO.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第9章:Registration/tools/__pycache__/IO.cpython-36.pyc -------------------------------------------------------------------------------- /第9章:Registration/tools/__pycache__/IO.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第9章:Registration/tools/__pycache__/IO.cpython-37.pyc -------------------------------------------------------------------------------- /第9章:Registration/tools/__pycache__/ISS.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第9章:Registration/tools/__pycache__/ISS.cpython-36.pyc -------------------------------------------------------------------------------- /第9章:Registration/tools/__pycache__/ISS.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第9章:Registration/tools/__pycache__/ISS.cpython-37.pyc -------------------------------------------------------------------------------- /第9章:Registration/tools/__pycache__/RANSAC.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第9章:Registration/tools/__pycache__/RANSAC.cpython-36.pyc -------------------------------------------------------------------------------- /第9章:Registration/tools/__pycache__/RANSAC.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第9章:Registration/tools/__pycache__/RANSAC.cpython-37.pyc -------------------------------------------------------------------------------- /第9章:Registration/tools/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第9章:Registration/tools/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /第9章:Registration/tools/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuxinren456852/Point-cloud-process/HEAD/第9章:Registration/tools/__pycache__/__init__.cpython-37.pyc --------------------------------------------------------------------------------