Combine two rectified point clouds
-
It is possible to combine point clouds in Python using the RealSense SDK's rs2_transform_point_to_point instruction, which can combine data from different viewpoints using a procedure called an affine transform. There are not many references for using this instruction though. The link below may be helpful.
https://github.com/IntelRealSense/librealsense/issues/5583#issuecomment-570805578
In regard to other platforms, Intel have a tutorial for combining point clouds from two RealSense cameras using ROS.
https://github.com/IntelRealSense/realsense-ros/wiki/Showcase-of-using-2-cameras
Intel also have a guide for stitching two pointclouds using C++ and MATLAB.
https://github.com/IntelRealSense/librealsense/tree/master/wrappers/pointcloud/pointcloud-stitching
Views from multiple RealSense cameras can be combined with the commercial software tool RecFusion Pro.
https://www.recfusion.net/index.php/en/features
Two point clouds could be combined in the Open3D platform using a procedure called ICP.
https://github.com/IntelRealSense/librealsense/issues/10477
PCL has a method called Normal Distributions Transform.
https://pointclouds.org/documentation/tutorials/normal_distributions_transform.html
Please sign in to leave a comment.
Comments
7 comments