Questions tagged [point-clouds]

questions concerning the use of point clouds / data point sets in blender.

What is a point cloud?

A point cloud is a set of data points in some coordinate system.

These points are usually defined by X, Y, and Z coordinates in a 3D coordinate system. They are often intended to represent the external surface of an object (volumetric data).

Point clouds may be created by 3D scanners. These devices measure in an automatic way a large number of points on the surface of an object, and often output a point cloud as a data file. The point cloud represents the set of points that the device has measured.

Point clouds can be converted to polygon mesh or triangle mesh models, NURBS surface models, or CAD models through a process commonly referred to as surface reconstruction.[1]

Volume Rendering in Cycles

Rendering of volumetric data (point clouds) in Cycles will be available soon, hopefully in Blender 2.70.[2]

113 questions
4
votes
1 answer

Importing point cloud to Blender?

I have developed a 3D scanner, this is a relatively fast scan of a big space. https://www.youtube.com/watch?v=FHAK1L_AQig The scanner works great. it Provides text files in X; Y; Z format The only program I have succeeded to import this is Meshlab.…
Garug Garuson
  • 51
  • 1
  • 1
  • 4
3
votes
1 answer

How can I prepare a point cloud for visualization in Blender using MeshLab?

I have access to some laser scanned LAS files. I can convert the LAS files to X, Y, Z point clouds using LASTools. Once a point cloud is in an X, Y, Z ascii format it can be imported into MeshLab. I am looking to export the point clouds to a format…
beatsforthemind
3
votes
1 answer

Is there an easy way to import point clouds with colors in Blender 3.2?

I studied a couple of videos (it seems to be on this topic), but I failed to achieve something. For example, I have a cloud in Metashape and I want to convert it into a blender. If there is no such functionality, which way is better? Upd: I…
1
vote
0 answers

How to combine multiple .OBJ point cloud files into one point cloud?

I noticed that we can combine multiple OBJ meshes with this answer, but I don't know how to do this with point clouds. I have several point clouds that represent partial scans of an object and I wanted to drag these together to recombine them into…
0
votes
0 answers

How to get point cloud produced by GN modifier by python?

I create a empty mesh and create many points in PointCloud and want to write a addon to export them, how to get them by python? i find the point cloud type doc, but don't get the api to get them: PointCloud(ID) base classes — bpy_struct,…
0
votes
0 answers

Blender Point Cloud access

Is there possibility how to access to the points in Point Cloud object in Python API Bleder > 2.92? I want to change position of each point, set color and set scale. I tried the code below. This change the position of point in Point Cloud. But how…
0
votes
1 answer

cannot get wisps on ghost with point cloud node in blender

So I am trying to create a cool ghost pony with a particle system with a wind force and vortex behind it that blows upon the pony. I limited the particles life span to end just past to the pony so that it looks like there are cool wisps coming off…
TheMuffinMan
  • 48
  • 2
  • 14
0
votes
1 answer

Is it possible to procedurally render a mesh by generating a cloud of 3D RGB points?

I want to render monsters by procedurally generating a cloud of 3D RGB points representing their bodies. In other words, I want to be able to create a function: def gen_3d_points(): points = [] ... arbitrary code ... return points That will…