Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
4answers
564 views

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 ?
3
votes
3answers
612 views

Most conventional method for storing XYZ data in MATLAB

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?: ...
3
votes
2answers
341 views

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?
2
votes
1answer
62 views

How to get curve from intersection of point cloud and arbitrary plain?

I have various point clouds defining RT-STRUCTs called ROI from DICOM files. DICOM files are formed by tomographic scanners. Each ROI is formed by point cloud and it represents some 3D object. The ...
2
votes
0answers
416 views

Point cloud to a mesh in Point Cloud Library [closed]

Is there a function/class in PCL that converts a point cloud to a mesh?
2
votes
1answer
228 views

Contour of 2d point clouds

I have scattered point clouds in 2d. My problem is I would like to get the boundary's point to get the contour of the point clouds. I know about this 'marching square' howver this algorithm usually ...
2
votes
4answers
326 views

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 ...
1
vote
1answer
289 views

LNK2005, “already defined error” linker error in MSVC2010

I am trying to implement a test project using the Point Cloud Library and OpenCV with multiple files. When I try to compile, I get the "already defined error" message. Probably I'm doing something ...
1
vote
0answers
131 views

How to merge two point clouds with different amounts of points

My 3D Scanner scans some object from different angles to get a 360° surface reconstruction in the end. The point clouds of each scan have different amounts of points and need to be merged. In the PCL ...
1
vote
2answers
556 views

Android OpenGL Point Clouds

I've been trying to use gl.glDrawElements(GL10.GL_POINTS, 4, GL10.GL_UNSIGNED_BYTE, vertexBuffer); to draw 4 points on my screen with a vertex buffer, but I can't get it to work. All I want to ...
1
vote
2answers
270 views

3d cloud viewer?

I have a file which contains a bunch of points with their x,y, z locations.I am looking for a simple viewer where in I can load this point data and view it .Rotation is essential for me to check the ...
1
vote
0answers
116 views

Finding specific shapes in point clouds quickly

I've got a point cloud, and would like to detect occurrences of certain patterns of points in my code. Let's say I have 1000 points in 3d space, and I want to detect all instances of 3 points which ...
0
votes
2answers
47 views

Use VTK to plot points of different colours

I would like to use Visualisation Toolkit to scatter plot points, each of which will have a different colour. I have used the advice given here to plot points in a gray colour, but am failing to ...
0
votes
2answers
73 views

Finding CUDA_SDK_ROOT_DIR

I am trying to set up Point Cloud Library trunk build with CUDA options enabled. I believe I have installed CUDA correctly, following these instructions. In the cmake options for the PCL build, some ...
0
votes
1answer
77 views

OpenGL get 2d projection from 3d points

I have display a collection of 3d cloud points by this code: glEnableClientState(GL_VERTEX_ARRAY); glEnableClientState(GL_COLOR_ARRAY); if (keyframes[i]->numberOf3DPoints > 0) { ...
0
votes
0answers
155 views

How to save depth map image in cloud points

I am currently working on the microsoft kinect. I am using Kinect SDK on Microsoft Visual Studio 2010 in Windows 7-64bit. I have installed the kinect drivers and coding4fun toolbox/drivers. I have ...
0
votes
1answer
87 views

Conversion in Point Cloud Library from proprietary format to float; no matching function found

I have what I think is a fairly basic question about a conversion in the point cloud library from a proprietry data type to float. My issue I think comes from a lack of experience with templates, data ...
0
votes
0answers
589 views

Using PCL with Visual Studio 2010

I am quite new at working with libraries, and I have some problems... I have installed PCL and all dependencies on my computer (Windows 7, 32 bit) and I can build and use simple examples like that ...
0
votes
1answer
81 views

Rotation of a pointcloud based on normal vector

I'm looking to rotate a 3-D point cloud based on the orientation of the floor. I have detected the floor and calculated its normal vector. I want to use this normal vector to ensure that all points ...
0
votes
2answers
86 views

Suitable file format and tool for 3d modeling pipeline

I'm working on a modeling/reconstruction algorithm for point cloud data. So far I've been developing in Python, and been relatively happy with VPython for my visualization needs. One problem I have ...
0
votes
1answer
426 views

surface reconstruction from 3D point cloud dealing with unwanted overlapping surface? surface normal problem

After reading the two nice posts Algorithm for simplifying 3d surface? http://stackoverflow.com/questions/838761/robust-algorithm-for-surface-reconstruction-from-3d-point-cloud I have still a ...
0
votes
2answers
102 views

Pseudo code for Pine Tree point per point generation? (2d)

NY is coming!) So let us assume we have some function like drawPoint(color, x, y) how would we render a pine tree? (happy NY!=)
0
votes
1answer
258 views

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 ?
-1
votes
2answers
153 views

rendered 3D Scene to point cloud

Is there a way to extract a point cloud from a rendered 3D Scene (using OPENGL)? in Detail: The input should be a rendered 3D Scene. The output should be e.g a three dimensional array with ...