Main Page
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
Variables
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
Typedefs
Enumerations
Enumerator
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
r
s
t
u
v
w
x
~
Variables
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
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
z
Related Functions
:
a
g
i
l
o
p
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
z
Functions
_
a
b
c
d
e
g
l
m
o
p
r
s
t
u
v
Variables
Typedefs
a
c
d
e
g
i
l
m
n
o
p
q
s
t
v
Macros
_
a
b
c
d
e
f
g
i
l
o
p
r
s
t
z
python
errorminimizers
errorminimizers/identity.cpp
Go to the documentation of this file.
1
#include "
identity.h
"
2
3
#include "
pointmatcher/ErrorMinimizersImpl.h
"
4
5
namespace
python
6
{
7
namespace
errorminimizers
8
{
9
void
pybindIdentity
(py::module& p_module)
10
{
11
using
IdentityErrorMinimizer
=
ErrorMinimizersImpl<ScalarType>::IdentityErrorMinimizer
;
12
py::class_<IdentityErrorMinimizer, std::shared_ptr<IdentityErrorMinimizer>,
ErrorMinimizer
>(p_module,
"IdentityErrorMinimizer"
)
13
.def(py::init<>()).def_static(
"description"
, &
IdentityErrorMinimizer::description
)
14
.def(
"compute"
, &
IdentityErrorMinimizer::compute
, py::arg(
"mPts"
));
15
}
16
}
17
}
IdentityErrorMinimizer
Definition:
ErrorMinimizers/Identity.h:42
ErrorMinimizersImpl.h
python::errorminimizers::pybindIdentity
void pybindIdentity(py::module &p_module)
Definition:
errorminimizers/identity.cpp:9
IdentityErrorMinimizer::compute
virtual TransformationParameters compute(const ErrorElements &mPts)
Find the transformation that minimizes the error given matched pair of points. This function most be ...
Definition:
ErrorMinimizers/Identity.cpp:39
python
Definition:
add_descriptor.cpp:5
ErrorMinimizersImpl::IdentityErrorMinimizer
::IdentityErrorMinimizer< T > IdentityErrorMinimizer
Definition:
ErrorMinimizersImpl.h:55
IdentityErrorMinimizer::description
static const std::string description()
Definition:
ErrorMinimizers/Identity.h:47
PointMatcher::ErrorMinimizer
An error minimizer will compute a transformation matrix such as to minimize the error between the rea...
Definition:
PointMatcher.h:531
identity.h
libpointmatcher
Author(s):
autogenerated on Sun Dec 22 2024 03:21:53