Skip to content
#

pointcloud

A point cloud is a set of data points in space. The points represent a 3D shape or object. Each point has its set of X, Y and Z coordinates.

Here are 265 public repositories matching this topic...

BaltashovIlia
BaltashovIlia commented Aug 19, 2021

Describe the error

pcl::PointXYZ is implemented as a union-like structure and has a field .data.
pcl::PointXY is however implemented as a “pure” structure and does not have a .data field.

To Reproduce

The result of this inconsistency are a weird compilation errors for the following code:

#include <pcl/point_types.h>
#include <pcl/common/transforms.h>

int main()
{
odddozen
odddozen commented Aug 27, 2021

the .pcd file format allows for fields to be extended. this means it can neatly hold data about the label or object of a point. this can be very handy for ML tasks. However, the open3d file io does not appear to be able to read other fields other than the xyz, rgb, normals etc . I haven't been able to find where in the open3d structure the code for the file io pcd loading is implemented to att

Wikipedia
Wikipedia

Related Topics

3d lidar mesh