Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
x
y
z
Typedefs
a
b
c
d
f
g
i
l
m
n
r
s
t
u
w
Enumerations
Enumerator
a
b
c
d
e
f
g
h
k
l
n
o
r
s
t
u
v
y
Classes
Class List
Class Hierarchy
Class Members
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
~
Variables
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
Enumerations
Enumerator
a
b
c
d
f
g
h
i
k
l
m
n
p
r
s
t
u
v
w
Related Functions
:
_
a
g
i
l
n
o
p
r
s
t
u
Files
File List
File Members
All
_
a
b
c
d
e
f
g
i
l
m
n
o
p
q
r
s
t
u
v
w
y
z
Functions
_
a
b
c
d
e
g
i
l
m
n
o
p
r
s
t
u
v
Variables
_
a
c
d
g
i
m
n
r
s
t
v
w
Typedefs
b
c
d
i
m
n
o
p
q
s
t
v
Macros
_
a
b
c
d
e
f
g
i
l
m
n
o
p
r
s
t
y
z
mp2p_icp_map
include
mp2p_icp
plane_patch.h
Go to the documentation of this file.
1
/* -------------------------------------------------------------------------
2
* A repertory of multi primitive-to-primitive (MP2P) ICP algorithms in C++
3
* Copyright (C) 2018-2024 Jose Luis Blanco, University of Almeria
4
* See LICENSE for license information.
5
* ------------------------------------------------------------------------- */
12
#pragma once
13
14
#include <mrpt/math/TPlane.h>
15
#include <mrpt/math/TPoint3D.h>
16
17
namespace
mp2p_icp
18
{
22
struct
plane_patch_t
23
{
24
mrpt::math::TPlane
plane
;
25
mrpt::math::TPoint3D
centroid
;
26
27
plane_patch_t
() =
default
;
28
plane_patch_t
(
29
const
mrpt::math::TPlane3D& pl,
const
mrpt::math::TPoint3D& center)
30
:
plane
(pl),
centroid
(center)
31
{
32
}
33
};
34
37
}
// namespace mp2p_icp
mp2p_icp
Definition:
covariance.h:17
mp2p_icp::plane_patch_t::centroid
mrpt::math::TPoint3D centroid
Definition:
plane_patch.h:25
mp2p_icp::plane_patch_t::plane_patch_t
plane_patch_t()=default
mp2p_icp::plane_patch_t::plane_patch_t
plane_patch_t(const mrpt::math::TPlane3D &pl, const mrpt::math::TPoint3D ¢er)
Definition:
plane_patch.h:28
mp2p_icp::plane_patch_t
Definition:
plane_patch.h:22
mp2p_icp::plane_patch_t::plane
mrpt::math::TPlane plane
Definition:
plane_patch.h:24
mp2p_icp
Author(s):
autogenerated on Wed Feb 26 2025 03:45:47