for Robot Artificial Inteligence

PointcloudXYZNormal && Correspondence(ICP/GICP에 사용)

|

PointcloudXYZNormal:

주로 Correspondence를 찾을때 쓴다.(Matching method)

projection pointcloud to Normal plane(considering distance between camera pose and point poise), and find Correspondence another frame’s points(other also PointcloudXYZNormal);

A point structure representing Euclidean xyz coordinates, and the RGB color, together with normal coordinates and the surface curvature estimate.

Due to historical reasons (PCL was first developed as a ROS package), the RGB information is packed into an integer and casted to a float. This is something we wish to remove in the near future, but in the meantime, the following code snippet should help you pack and unpack RGB colors in your PointXYZRGB structure:

REFERENCE

Pointcloud Correspondence

Pointcloud Correspondence discuss

ICP - Correspondence

Normal Coordinates

Normal Plane

Comments