Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
84475ef1
Commit
84475ef1
authored
Oct 02, 2014
by
edgarriba
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
UPNP code for N=1
parent
71f4894d
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
88 additions
and
0 deletions
+88
-0
upnp.cpp
modules/calib3d/src/upnp.cpp
+0
-0
upnp.h
modules/calib3d/src/upnp.h
+88
-0
No files found.
modules/calib3d/src/upnp.cpp
0 → 100644
View file @
84475ef1
This diff is collapsed.
Click to expand it.
modules/calib3d/src/upnp.h
0 → 100644
View file @
84475ef1
#ifndef UPNP_H_
#define UPNP_H_
#include "precomp.hpp"
#include "opencv2/core/core_c.h"
#include <iostream>
using
namespace
std
;
class
upnp
{
public
:
upnp
(
const
cv
::
Mat
&
cameraMatrix
,
const
cv
::
Mat
&
opoints
,
const
cv
::
Mat
&
ipoints
);
~
upnp
();
void
compute_pose
(
cv
::
Mat
&
R
,
cv
::
Mat
&
t
);
private
:
template
<
typename
T
>
void
init_camera_parameters
(
const
cv
::
Mat
&
cameraMatrix
)
{
uc
=
cameraMatrix
.
at
<
T
>
(
0
,
2
);
vc
=
cameraMatrix
.
at
<
T
>
(
1
,
2
);
fu
=
1
;
fv
=
1
;
}
template
<
typename
OpointType
,
typename
IpointType
>
void
init_points
(
const
cv
::
Mat
&
opoints
,
const
cv
::
Mat
&
ipoints
)
{
for
(
int
i
=
0
;
i
<
number_of_correspondences
;
i
++
)
{
pws
[
3
*
i
]
=
opoints
.
at
<
OpointType
>
(
0
,
i
).
x
;
pws
[
3
*
i
+
1
]
=
opoints
.
at
<
OpointType
>
(
0
,
i
).
y
;
pws
[
3
*
i
+
2
]
=
opoints
.
at
<
OpointType
>
(
0
,
i
).
z
;
us
[
2
*
i
]
=
ipoints
.
at
<
IpointType
>
(
0
,
i
).
x
;
us
[
2
*
i
+
1
]
=
ipoints
.
at
<
IpointType
>
(
0
,
i
).
y
;
}
}
double
reprojection_error
(
const
double
R
[
3
][
3
],
const
double
t
[
3
]);
void
choose_control_points
();
void
compute_alphas
();
void
fill_M
(
CvMat
*
M
,
const
int
row
,
const
double
*
alphas
,
const
double
u
,
const
double
v
);
void
compute_ccs
(
const
double
*
betas
,
const
double
*
f
,
const
double
*
ut
);
void
compute_pcs
(
void
);
void
solve_for_sign
(
void
);
void
check_positive_eigenvectors
(
double
*
ut
);
void
find_betas_and_focal_approx_1
(
const
CvMat
*
Ut
,
const
CvMat
*
Rho
,
double
*
betas
,
double
*
efs
);
void
find_betas_and_focal_approx_2
(
const
CvMat
*
Ut
,
const
CvMat
*
Rho
,
double
*
betas
,
double
*
efs
);
void
qr_solve
(
CvMat
*
A
,
CvMat
*
b
,
CvMat
*
X
);
cv
::
Mat
compute_constraint_distance_2param_6eq_2unk_f_unk
(
const
cv
::
Mat
&
M1
);
cv
::
Mat
compute_constraint_distance_3param_6eq_6unk_f_unk
(
const
cv
::
Mat
&
M1
,
const
cv
::
Mat
&
M2
);
double
dot
(
const
double
*
v1
,
const
double
*
v2
);
double
dotXY
(
const
double
*
v1
,
const
double
*
v2
);
double
dotZ
(
const
double
*
v1
,
const
double
*
v2
);
double
dist2
(
const
double
*
p1
,
const
double
*
p2
);
void
compute_rho
(
double
*
rho
);
void
compute_L_6x12
(
const
double
*
ut
,
double
*
l_6x12
);
void
gauss_newton
(
const
CvMat
*
L_6x12
,
const
CvMat
*
Rho
,
double
current_betas
[
4
],
double
*
efs
);
void
compute_A_and_b_gauss_newton
(
const
double
*
l_6x12
,
const
double
*
rho
,
const
double
cb
[
4
],
CvMat
*
A
,
CvMat
*
b
,
double
const
f
);
double
compute_R_and_t
(
const
double
*
ut
,
const
double
*
betas
,
const
double
*
efs
,
double
R
[
3
][
3
],
double
t
[
3
]);
void
estimate_R_and_t
(
double
R
[
3
][
3
],
double
t
[
3
]);
void
copy_R_and_t
(
const
double
R_dst
[
3
][
3
],
const
double
t_dst
[
3
],
double
R_src
[
3
][
3
],
double
t_src
[
3
]);
double
uc
,
vc
,
fu
,
fv
;
std
::
vector
<
double
>
pws
,
us
,
alphas
,
pcs
;
int
number_of_correspondences
;
double
cws
[
4
][
3
],
ccs
[
4
][
3
];
int
max_nr
;
double
*
A1
,
*
A2
;
};
#endif // UPNP_H_
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment