MartyG
- Total activity 5964
- Last activity
- Member since
- Following 0 users
- Followed by 7 users
- Votes 3
- Subscriptions 1820
Comments
Recent activity by MartyG-
GL is a method of accelerating the performance of SDK functions of the type RS2:: by inserting gl:: into the function's name - such as rs2::pointcloud becoming rs2::gl::pointcloud. These GL-enabled...
-
This should provide helpful C++ references for voxel export: https://github.com/IntelRealSense/librealsense/issues/6411
-
250 Accel is supported in RealSense IMU cameras up until mid 2022. IMU-equipped cameras manufactured after that time support 200 instead. So please try 200 Accel instead of 250. Apologies for th...
-
I am only able to respond by comments on this website. I recommend commenting out lines 136-147 of the rs-gl program by putting // in front of them to see whether it disables rendering. 我只能通过本网站的...
-
The program does use rs2::gl::pointlcloud.and rs2::gl::pointcloud_renderer, as it is a GL example. https://github.com/IntelRealSense/librealsense/blob/master/examples/gl/rs-gl.cpp#L54 https://githu...
-
You could perhaps use the rs-gl C++ example and insert an export_to_ply instruction after the pc.calculate line to export it to a .ply file, and comment out the part of the program that renders the...
-
-
https://github.com/IntelRealSense/librealsense/issues/6560
-
I am not aware of a means of directly controlling the density of a pointcloud using librealsense SDK code. You may be able to affect it indirectly though by influencing the amount of detail on the...
-
Hi Lblsydx You can export a RealSense pointcloud to a file format called .ply (a pointcloud data file) without rendering the pointcloud on the screen. 你好@Lblsydx 您可以将 RealSense 点云导出为名为 .ply(点云数据...