I have a dataset which consists in a set of camera images and a LiDAR point clouds of the same environment in ply format with x, y, z, and intensity. I'd like to colorize this point clouds so that generated point clouds would have color as well as original intensity values. By loading my images with internal and external parameters along with the point clouds, I was able to make structured point clouds and update color successfully. But, once I export this generated point clouds, it does have rgb values but loses its original intensity values. Are there any ways I can fix this and have both color and intensity in generated point clouds?
Below is the header of my input ply file:
ply
format binary_little_endian 1.0
comment Generated by the CGAL library
element vertex 23054357
property float x
property float y
property float z
property uchar intensity
end_header
Thank you in advance for your help!
Below is the header of my input ply file:
ply
format binary_little_endian 1.0
comment Generated by the CGAL library
element vertex 23054357
property float x
property float y
property float z
property uchar intensity
end_header
Thank you in advance for your help!
Comment