point-clouds

Connecting points to make a triangle

If I have a set of 3d points (AKA point cloud) what is the best way to determine the groups of 3 points (triangles) I should make, to create a surface reconstruction? ...

Any good C or C++ libraries out there for dealing with large point clouds?

Basically, I'm looking for a library or SDK for handling large point clouds coming from LIDAR or scanners, typically running into many millions of points of X,Y,Z,Colour. What I'm after are as follows; Fast display, zooming, panning Point cloud registration Fast low level access to the data Regression of surfaces and solids (not as imp...

Meshing of Point Clouds from a 3Dlaser scanner

Is there any package/software which can do Meshing of Point Clouds in real time? What is the data structure used to represent 3D Point Clouds ? ...

Command line script or software tools to label 3d point cloud dataset

How can i label a 3d point cloud dataset? is there a software which can load a text file containing x,y,z values and then visualize it , so that I can label it ? ...

Most conventional method for storing XYZ data in MATLAB

Hi. I have a large amount of data to import in to MATLAB, representing location of points in cartesian space. Which of the following is the most conventional for storing and processing standard XYZ data?: OPTION #1 Store X, Y and Z coordinates as separate n * 1 vectors (possibly within a structure?). This makes: Plotting simple: plot...