Questions tagged [point-clouds]

A point cloud is a set of vertices in three-dimensional space, and is commonly the data set output by 3D scanners.

Point clouds are applicable to a variety of 3D imaging scenarios, including terrain mapping, CAD modeling, animation and metrology. A point cloud is a raw data set that typically needs to be converted into a useful data set, a process known as surface reconstruction. There are a variety of known algorithms that make this conversion.

Links

1346 questions
3
votes
1 answer

How to integrate Point Cloud Library With Unity Google tango project?

I am currently working with Google Tango in Unity and i want to integrate Point Cloud Library(PCL) in order to process the point cloud data and segment the planes.I couldn't find any online references on this, so any help would be much appreciated
3
votes
1 answer

Split up a 3D point cloud into smaller oriented bounding boxes

I'm working with C# WPF. It's a while I'm looking for an algorithm to solve my Problem. Probably it's not so trivial and goes into 3D graphics. I have a 2D surface in a 3D space (can also be represented by a point cloud). I need to split up this…
Marco P.
  • 31
  • 1
3
votes
1 answer

pcl normal.compute returning NaN values

I am trying to merge point clouds from two frames into one bigger point cloud. I will use ICP for that but I understand I need to per-align the point clouds. I am trying to do it with PCL template_alignment code…
3
votes
3 answers

Generating a point cloud from another labeld point cloud

I have a labeled point cloud data (cloud) that it's points include "x","y", "z" and "label" information while label can be 1,2 or 3. pcl::PointCloud::Ptr cloud (new pcl::PointCloud); Now, I want to divide this point…
Taraneh
  • 265
  • 1
  • 4
  • 13
3
votes
1 answer

PCD Sample Data

I am looking for sample point cloud scenes to work with but unable to find any free sample PCD data apart from the PCL Documentation with a few files. Any source when I can find free PCD files to work with? I am mainly working on ground and…
Giant Cloud
  • 83
  • 2
  • 11
3
votes
3 answers

Removing points from a pcl::PointCloud

I'm new in PCL. I'm using the PCL library and I'm looking for a way to extract points from a point cloud or copying particular points to a new one. I want to verify for each point if it respects a condition and I want to obtain a point cloud with…
mrx
  • 51
  • 1
  • 1
  • 4
3
votes
1 answer

Is there a specification for the PCD file format?

Is there an official specification for the point cloud data (PCD) format? Or is it rather only intended for PCL-internal use? The only information I found about it is this which kind of looks like a specification, but it doesn't contain all the…
Lukas Kalbertodt
  • 79,749
  • 26
  • 255
  • 305
3
votes
1 answer

How to parse binary_compressed point cloud?

I want to parse binary_compressed point cloud file in javascript. I found, that in writeBinaryCompressed() points are 'Convert the XYZRGBXYZRGB structure to XXYYZZRGBRGB to aid compression', but I don't understand what does in mean. Also, I found…
Tom A. J.
  • 55
  • 4
3
votes
4 answers

Fit a cylinder to scattered 3D XYZ point data

As in the title, I want to fit a cylinder to a group of 3D points with Python. This is a nice solution with MATLAB. How can we do it with Python?
trminh89
  • 877
  • 2
  • 10
  • 17
3
votes
1 answer

Set-to-Subset point cloud matching

I have two point clouds, in 3d coordinates. One is a subset of the other, containing many less points. They are in the same scale. What i need to do is find the translation and rotation between the two. I have looked at Point cloud Library,…
anti
  • 3,011
  • 7
  • 36
  • 86
3
votes
1 answer

How to extract depth information from the 3D point cloud data?

I have rgb image (let's call it test.png ) and corresponding 3D cloud points (extracted using stereo camera). Now, I want to use depth information to train my neural network. Format for 3D point cloud is .PCD v.7 - Point Cloud Data file…
user3165156
  • 79
  • 2
  • 8
3
votes
0 answers

How to include Point Cloud Library in an Android Studio project

I am trying to use PCL functions in our Android application to analyze point clouds captured by Google Tango hardware. I have already prototyped what I would like PCL to do on an Ubuntu 16.04 machine in C++ and I'm looking to bring the functionality…
jcallin
  • 75
  • 4
3
votes
2 answers

Structure From Motion From Multiple Views w/ MATLAB

I am a novice when it comes to the topic of Structure From Motion. I have been trying to follow the tutorial here in the MathWorks webpage for SFM: LINK. However, after running the code, I get this error message: Warning: Maximum number of trials…
troymyname00
  • 670
  • 1
  • 14
  • 32
3
votes
1 answer

processing Point Cloud, *.xyz file format with 6 columns

I am in need of processing a photogrammetry file to point cloud then apply analysis module by using Python. Using meshlab, I have managed to export xyz file of my model then converted to txt file, so I can easily access and plot data using…
C.Lee
  • 31
  • 1
  • 2
3
votes
0 answers

QtDataVisualization "meshing" Q3Dscatter

I would like to be able to mesh a Q3DScatter (having it look like a Q3DSurface), or at least drawing lines between the points. I have not found anything like this in the docs or in the examples, is there a simple way to do it, or will I have to…
cmourglia
  • 2,423
  • 1
  • 17
  • 33