A 3d-scanner utilizing the intel realsense depth camera.
![]() |
11 ماه پیش | |
---|---|---|
.gitignore | 11 ماه پیش | |
3d-scanner-startup-helper | 1 سال پیش | |
3d-scanner.cpp | 11 ماه پیش | |
CMakeLists.txt | 11 ماه پیش | |
README.md | 11 ماه پیش | |
pcl-converter.cpp | 11 ماه پیش | |
pcl-converter.hpp | 11 ماه پیش |
3D Scanning Software for intel realsense Depth cameras
First create a build folder
mkdir build && cd build
Then run cmake to create a Makefile
cmake ..
Run make to build the project
make
Execute the compiled project (use sudo when on macOS, see known issue(s))
./3d-scanner
On Mac there can occure either segmentation faults or a realsense error, that the program is waiting too long for frames, when running the executable. Somehow it will work again if you just execute the 3d-scanner-startup-helper often enough (this is basically the realsense hello-world example). This will also fail a lot with a segmentation faults but after a while it will work again. At least as long as the camera is connected, when reconnecting the error usually appears again. I am not sure if this Error is Mac specific or wheater I am doing something wrong. However I did not manage to resolve it properly. If you have any Idea what the reason could be, feel free to contact me.
Another inconvenience I discovered on Mac is, that the executable can only be executed using sudo
, otherwise it will always fail with a segmentation fault.