File: concatenate_fields.rst

package info (click to toggle)
pcl 1.7.2-7
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 138,052 kB
  • ctags: 39,618
  • sloc: cpp: 446,687; xml: 28,552; ansic: 13,753; python: 539; makefile: 72; sh: 25
file content (98 lines) | stat: -rw-r--r-- 2,575 bytes parent folder | download | duplicates (7)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
.. _concatenate_fields:

Concatenate the fields of two Point Clouds
------------------------------------------

In this tutorial we will learn how to concatenating the fields (e.g.,
dimensions) of two different point clouds. The constraint imposed here is that
the number of points in the two datasets has to be equal.

The code
--------

First, create a file, let's say, ``concatenate_fields.cpp`` in your favorite
editor, and place the following code inside it:

.. literalinclude:: sources/concatenate_fields/concatenate_fields.cpp
   :language: cpp
   :linenos:

The explanation
---------------

Now, let's break down the code piece by piece.


.. literalinclude:: sources/concatenate_fields/concatenate_fields.cpp
   :language: cpp
   :lines: 8-10

define the three Point Clouds: two inputs (cloud_a and cloud_b), one output
(cloud_c).

The lines:

.. literalinclude:: sources/concatenate_fields/concatenate_fields.cpp
   :language: cpp
   :lines: 12-30

fill in the data for the two input point clouds.

Then, lines:

.. literalinclude:: sources/concatenate_fields/concatenate_fields.cpp
   :language: cpp
   :lines: 32-38

display the content of cloud_a and cloud_b to screen.

In line:

.. literalinclude:: sources/concatenate_fields/concatenate_fields.cpp
   :language: cpp
   :lines: 40

we create cloud_c by concatenating the fields of cloud_a and cloud_b together.

Finally:

.. literalinclude:: sources/concatenate_fields/concatenate_fields.cpp
   :language: cpp
   :lines: 41-45

is used to show the content of cloud_c.

Compiling and running the program
---------------------------------

Add the following lines to your CMakeLists.txt file:

.. literalinclude:: sources/concatenate_fields/CMakeLists.txt
   :language: cmake
   :linenos:

After you have made the executable, you can run it. Simply do::

  $ ./concatenate_fields

You will see something similar to::

  Cloud A: 
      0.352222 -0.151883 -0.106395
      -0.397406 -0.473106 0.292602
      -0.731898 0.667105 0.441304
      -0.734766 0.854581 -0.0361733
      -0.4607 -0.277468 -0.916762
  Cloud B: 
      0.183749 0.968809 0.512055
      -0.998983 -0.463871 0.691785
      0.716053 0.525135 -0.523004
      0.439387 0.56706 0.905417
      -0.579787 0.898706 -0.504929
  Cloud C: 
      0.352222 -0.151883 -0.106395 0.183749 0.968809 0.512055
      -0.397406 -0.473106 0.292602 -0.998983 -0.463871 0.691785
      -0.731898 0.667105 0.441304 0.716053 0.525135 -0.523004
      -0.734766 0.854581 -0.0361733 0.439387 0.56706 0.905417
      -0.4607 -0.277468 -0.916762 -0.579787 0.898706 -0.504929