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
1292fdf7
Commit
1292fdf7
authored
Jan 13, 2015
by
Vijay Pradeep
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Now using default arg instead of overloads
parent
964d5a20
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
27 deletions
+2
-27
calib3d.hpp
modules/calib3d/include/opencv2/calib3d/calib3d.hpp
+2
-16
solvepnp.cpp
modules/calib3d/src/solvepnp.cpp
+0
-11
No files found.
modules/calib3d/include/opencv2/calib3d/calib3d.hpp
View file @
1292fdf7
...
@@ -488,22 +488,8 @@ CV_EXPORTS_W void solvePnPRansac( InputArray objectPoints,
...
@@ -488,22 +488,8 @@ CV_EXPORTS_W void solvePnPRansac( InputArray objectPoints,
float
reprojectionError
=
8.0
,
float
reprojectionError
=
8.0
,
int
minInliersCount
=
100
,
int
minInliersCount
=
100
,
OutputArray
inliers
=
noArray
(),
OutputArray
inliers
=
noArray
(),
int
flags
=
ITERATIVE
);
int
flags
=
ITERATIVE
,
int
rng_seed
=
0
);
//! computes the camera pose from a few 3D points and the corresponding projections. The outliers are possible.
CV_EXPORTS_W
void
solvePnPRansac
(
InputArray
objectPoints
,
InputArray
imagePoints
,
InputArray
cameraMatrix
,
InputArray
distCoeffs
,
OutputArray
rvec
,
OutputArray
tvec
,
bool
useExtrinsicGuess
,
int
iterationsCount
,
float
reprojectionError
,
int
minInliersCount
,
OutputArray
inliers
,
int
flags
,
int
rng_seed
);
//! initializes camera matrix from a few 3D points and the corresponding projections.
//! initializes camera matrix from a few 3D points and the corresponding projections.
CV_EXPORTS_W
Mat
initCameraMatrix2D
(
InputArrayOfArrays
objectPoints
,
CV_EXPORTS_W
Mat
initCameraMatrix2D
(
InputArrayOfArrays
objectPoints
,
...
...
modules/calib3d/src/solvepnp.cpp
View file @
1292fdf7
...
@@ -376,14 +376,3 @@ void cv::solvePnPRansac(InputArray _opoints, InputArray _ipoints,
...
@@ -376,14 +376,3 @@ void cv::solvePnPRansac(InputArray _opoints, InputArray _ipoints,
}
}
return
;
return
;
}
}
void
cv
::
solvePnPRansac
(
InputArray
_opoints
,
InputArray
_ipoints
,
InputArray
_cameraMatrix
,
InputArray
_distCoeffs
,
OutputArray
_rvec
,
OutputArray
_tvec
,
bool
useExtrinsicGuess
,
int
iterationsCount
,
float
reprojectionError
,
int
minInliersCount
,
OutputArray
_inliers
,
int
flags
)
{
solvePnPRansac
(
_opoints
,
_ipoints
,
_cameraMatrix
,
_distCoeffs
,
_rvec
,
_tvec
,
useExtrinsicGuess
,
iterationsCount
,
reprojectionError
,
minInliersCount
,
_inliers
,
flags
,
0
);
}
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