File tree Expand file tree Collapse file tree 1 file changed +19
-3
lines changed Expand file tree Collapse file tree 1 file changed +19
-3
lines changed Original file line number Diff line number Diff line change 6
6
Introduction
7
7
============
8
8
9
- This is a small python binding to the pointcloud library. Currently, the
10
- following parts of the API are wrapped (all methods operate on XYZ) point
11
- types
9
+ This is a small python binding to the ` pointcloud < http://pointclouds.org/ >`_ library.
10
+ Currently, the following parts of the API are wrapped (all methods operate on PointXYZ)
11
+ point types
12
12
13
13
* I/O and integration; saving and loading PCD files
14
14
* segmentation
@@ -29,6 +29,18 @@ for interacting with numpy. For example (from tests/test.py)
29
29
seg.set_method_type(pcl.SAC_RANSAC )
30
30
indices, model = seg.segment()
31
31
32
+ or, for smoothing
33
+
34
+ .. code-block :: python
35
+
36
+ import pcl
37
+ p = pcl.PointCloud()
38
+ p.from_file(" C/table_scene_lms400.pcd" )
39
+ fil = p.make_statistical_outlier_filter()
40
+ fil.set_mean_k (50 )
41
+ fil.set_std_dev_mul_thresh (1.0 )
42
+ fil.filter().to_file(" inliers.pcd" )
43
+
32
44
This work was supported by `Strawlab <http://strawlab.org/ >`_.
33
45
34
46
Requirements
@@ -60,6 +72,10 @@ API Documentation
60
72
pcl.StatisticalOutlierRemovalFilter
61
73
pcl.MovingLeastSquares
62
74
75
+ For deficiencies in this documentation, please consule the
76
+ `PCL API docs <http://docs.pointclouds.org/trunk/index.html >`_, and the
77
+ `PCL tutorials <http://pointclouds.org/documentation/tutorials/ >`_.
78
+
63
79
.. automodule :: pcl
64
80
:members:
65
81
:undoc-members:
You can’t perform that action at this time.
0 commit comments