https://github.com/izumin5210/cipointcloudviewer
Capturing and visualizing point clouds retrieved from multiple RGB-D cameras
https://github.com/izumin5210/cipointcloudviewer
cinder imgui pointcloud
Last synced: 9 days ago
JSON representation
Capturing and visualizing point clouds retrieved from multiple RGB-D cameras
- Host: GitHub
- URL: https://github.com/izumin5210/cipointcloudviewer
- Owner: izumin5210
- Created: 2016-06-11T23:42:53.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2020-09-21T14:21:00.000Z (over 4 years ago)
- Last Synced: 2025-03-29T06:21:50.586Z (29 days ago)
- Topics: cinder, imgui, pointcloud
- Language: C++
- Homepage: https://github.com/izumin5210/CiPointCloudViewer
- Size: 1.16 MB
- Stars: 29
- Watchers: 7
- Forks: 3
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CiPointCloudViewer
## Setup
### Directory structure (example)```
src
└── github.com
├── cinder
│ └── Cinder
└── izumin5210
└── CiPointCloudViewer
```### Download project and dependencies
#### cinder/Cinder```
$ git clone https://github.com/cinder/Cinder.git ~/src/github.com/cinder/Cinder$ cd ~/src/github.com/cinder/Cinder
$ git submodule init && git submodule update
```#### izumin5210/CiPointCloudViewer
```
$ git clone https://github.com/izumin5210/CiPointCloudViewer.git ~/src/github.com/izumin5210/CiPointCloudViewer$ cd ~/src/github.com/izumin5210/CiPointCloudViewer
$ git submodule init && git submodule update
$ cd blocks/ImGui/lib
$ git submodule init && git submodule update
```### Build on Linux
#### Build cinder```
$ cd ~/src/github.com/cinder/Cinder$ git fetch
$ git checkout -b android_linux origin/android_linux
$ mkdir build && cd build
$ cmake -DCINDER_BOOST_USE_SYSTEM ..
$ make -j$(nproc)
```#### Build this app
```
$ cd ~/src/github.com/izumin5210/CiPointCloudViewer$ cd proj/cmake
$ mkdir build && cd build
$ cmake ..
$ make -j$(nproc)
$ ./Debug/CiPointCloudViewer
```### Build on Mac OSX/macOS
TBD## LICENSE
Licensed under [MIT License](https://izumin.mit-license.org/2016).