├── .gitignore ├── .gitmodules ├── LICENSE ├── OfflineSLAM.bat ├── OfflineSLAM_cuda.bat ├── OnlineSLAM.bat ├── OnlineSLAM_cuda.bat ├── README.md ├── animation.py ├── app_config.json ├── doc ├── images │ ├── Record3D_001.png │ ├── Record3D_002.png │ └── Record3D_003.png └── recording_with_record3d.md ├── fileconv.py ├── iPhone-3D-Reconstruction.code-workspace ├── images ├── open3d_online_slam.png └── visualizer_pcd.png ├── iphone_rgbd_recorder.py ├── requirements.txt ├── rotate_point_cloud.py ├── visualizer_pcd.py └── visualizer_rgbd.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylabo0717/iPhone-3D-Reconstruction/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylabo0717/iPhone-3D-Reconstruction/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylabo0717/iPhone-3D-Reconstruction/HEAD/LICENSE -------------------------------------------------------------------------------- /OfflineSLAM.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylabo0717/iPhone-3D-Reconstruction/HEAD/OfflineSLAM.bat -------------------------------------------------------------------------------- /OfflineSLAM_cuda.bat: -------------------------------------------------------------------------------- 1 | call OfflineSLAM.bat %1 CUDA:0 -------------------------------------------------------------------------------- /OnlineSLAM.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylabo0717/iPhone-3D-Reconstruction/HEAD/OnlineSLAM.bat -------------------------------------------------------------------------------- /OnlineSLAM_cuda.bat: -------------------------------------------------------------------------------- 1 | call OnlineSLAM.bat %1 CUDA:0 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylabo0717/iPhone-3D-Reconstruction/HEAD/README.md -------------------------------------------------------------------------------- /animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylabo0717/iPhone-3D-Reconstruction/HEAD/animation.py -------------------------------------------------------------------------------- /app_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylabo0717/iPhone-3D-Reconstruction/HEAD/app_config.json -------------------------------------------------------------------------------- /doc/images/Record3D_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylabo0717/iPhone-3D-Reconstruction/HEAD/doc/images/Record3D_001.png -------------------------------------------------------------------------------- /doc/images/Record3D_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylabo0717/iPhone-3D-Reconstruction/HEAD/doc/images/Record3D_002.png -------------------------------------------------------------------------------- /doc/images/Record3D_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylabo0717/iPhone-3D-Reconstruction/HEAD/doc/images/Record3D_003.png -------------------------------------------------------------------------------- /doc/recording_with_record3d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylabo0717/iPhone-3D-Reconstruction/HEAD/doc/recording_with_record3d.md -------------------------------------------------------------------------------- /fileconv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylabo0717/iPhone-3D-Reconstruction/HEAD/fileconv.py -------------------------------------------------------------------------------- /iPhone-3D-Reconstruction.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylabo0717/iPhone-3D-Reconstruction/HEAD/iPhone-3D-Reconstruction.code-workspace -------------------------------------------------------------------------------- /images/open3d_online_slam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylabo0717/iPhone-3D-Reconstruction/HEAD/images/open3d_online_slam.png -------------------------------------------------------------------------------- /images/visualizer_pcd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylabo0717/iPhone-3D-Reconstruction/HEAD/images/visualizer_pcd.png -------------------------------------------------------------------------------- /iphone_rgbd_recorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylabo0717/iPhone-3D-Reconstruction/HEAD/iphone_rgbd_recorder.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylabo0717/iPhone-3D-Reconstruction/HEAD/requirements.txt -------------------------------------------------------------------------------- /rotate_point_cloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylabo0717/iPhone-3D-Reconstruction/HEAD/rotate_point_cloud.py -------------------------------------------------------------------------------- /visualizer_pcd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylabo0717/iPhone-3D-Reconstruction/HEAD/visualizer_pcd.py -------------------------------------------------------------------------------- /visualizer_rgbd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ylabo0717/iPhone-3D-Reconstruction/HEAD/visualizer_rgbd.py --------------------------------------------------------------------------------