File: surface.rst

package info (click to toggle)
python-pcl 0.3.0~rc1%2Bdfsg-14
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 31,828 kB
  • sloc: python: 3,094; cpp: 283; makefile: 181; sh: 24; ansic: 12
file content (36 lines) | stat: -rw-r--r-- 1,589 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
surface Tutorials
=================


Smoothing and normal estimation based on polynomial reconstruction
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In this tutorial, we will learn how to construct and run a Moving Least Squares (MLS) algorithm to obtain smoothed XYZ coordinates and normals.

* `Original <http://pointclouds.org/documentation/tutorials/resampling.php#moving-least-squares>`_ \
* TestCode : None


Construct a concave or convex hull polygon for a plane model
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In this tutorial we will learn how to calculate a simple 2D concave or convex hull polygon for a set of points supported by a plane.

* `Original <http://pointclouds.org/documentation/tutorials/hull_2d.php#hull-2d>`_ \
* TestCode : examples/official/Surface/concave_hull_2d.py


Fast triangulation of unordered point clouds
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In this tutorial we will learn how to run a greedy triangulation algorithm on a PointCloud with normals to obtain a triangle mesh based on projections of the local neighborhood.

* `Original <http://pointclouds.org/documentation/tutorials/greedy_projection.php#greedy-triangulation>`_ \
* TestCode : None


Fitting trimmed B-splines to unordered point clouds
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In this tutorial we will learn how to reconstruct a smooth surface from an unordered point-cloud by fitting trimmed B-splines.

* `Original <http://pointclouds.org/documentation/tutorials/bspline_fitting.php#bspline-fitting>`_ \
* TestCode : None