Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv_contrib
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_contrib
Commits
01d3b69b
Commit
01d3b69b
authored
Aug 29, 2014
by
Daniel Angelov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated ITERATIVE -> SOLVEPNP_ITERATIVE.
parent
e5bc40e6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
ccalib.hpp
modules/ccalib/include/opencv2/ccalib.hpp
+4
-4
No files found.
modules/ccalib/include/opencv2/ccalib.hpp
View file @
01d3b69b
...
@@ -91,9 +91,9 @@ public:
...
@@ -91,9 +91,9 @@ public:
*/
*/
bool
findRt
(
InputArray
objectPoints
,
InputArray
imagePoints
,
InputArray
cameraMatrix
,
InputArray
distCoeffs
,
bool
findRt
(
InputArray
objectPoints
,
InputArray
imagePoints
,
InputArray
cameraMatrix
,
InputArray
distCoeffs
,
OutputArray
rvec
,
OutputArray
tvec
,
bool
useExtrinsicGuess
=
false
,
int
flags
=
ITERATIVE
);
OutputArray
rvec
,
OutputArray
tvec
,
bool
useExtrinsicGuess
=
false
,
int
flags
=
SOLVEPNP_
ITERATIVE
);
bool
findRt
(
InputArray
image
,
InputArray
cameraMatrix
,
InputArray
distCoeffs
,
bool
findRt
(
InputArray
image
,
InputArray
cameraMatrix
,
InputArray
distCoeffs
,
OutputArray
rvec
,
OutputArray
tvec
,
bool
useExtrinsicGuess
=
false
,
int
flags
=
ITERATIVE
);
OutputArray
rvec
,
OutputArray
tvec
,
bool
useExtrinsicGuess
=
false
,
int
flags
=
SOLVEPNP_
ITERATIVE
);
/*
/*
Uses solvePnP to find the rotation and translation of the pattern
Uses solvePnP to find the rotation and translation of the pattern
with respect to the camera frame.
with respect to the camera frame.
...
@@ -101,10 +101,10 @@ public:
...
@@ -101,10 +101,10 @@ public:
bool
findRtRANSAC
(
InputArray
objectPoints
,
InputArray
imagePoints
,
InputArray
cameraMatrix
,
InputArray
distCoeffs
,
bool
findRtRANSAC
(
InputArray
objectPoints
,
InputArray
imagePoints
,
InputArray
cameraMatrix
,
InputArray
distCoeffs
,
OutputArray
rvec
,
OutputArray
tvec
,
bool
useExtrinsicGuess
=
false
,
int
iterationsCount
=
100
,
OutputArray
rvec
,
OutputArray
tvec
,
bool
useExtrinsicGuess
=
false
,
int
iterationsCount
=
100
,
float
reprojectionError
=
8.0
,
int
minInliersCount
=
100
,
OutputArray
inliers
=
noArray
(),
int
flags
=
ITERATIVE
);
float
reprojectionError
=
8.0
,
int
minInliersCount
=
100
,
OutputArray
inliers
=
noArray
(),
int
flags
=
SOLVEPNP_
ITERATIVE
);
bool
findRtRANSAC
(
InputArray
image
,
InputArray
cameraMatrix
,
InputArray
distCoeffs
,
bool
findRtRANSAC
(
InputArray
image
,
InputArray
cameraMatrix
,
InputArray
distCoeffs
,
OutputArray
rvec
,
OutputArray
tvec
,
bool
useExtrinsicGuess
=
false
,
int
iterationsCount
=
100
,
OutputArray
rvec
,
OutputArray
tvec
,
bool
useExtrinsicGuess
=
false
,
int
iterationsCount
=
100
,
float
reprojectionError
=
8.0
,
int
minInliersCount
=
100
,
OutputArray
inliers
=
noArray
(),
int
flags
=
ITERATIVE
);
float
reprojectionError
=
8.0
,
int
minInliersCount
=
100
,
OutputArray
inliers
=
noArray
(),
int
flags
=
SOLVEPNP_
ITERATIVE
);
/*
/*
Uses solvePnPRansac()
Uses solvePnPRansac()
*/
*/
...
...
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