imgproc: slightly change the signature of undistortPoints overload

This commit is contained in:
Vladislav Sovrasov
2017-09-14 11:13:36 +03:00
parent 701c7e5685
commit b421ebef86
3 changed files with 6 additions and 7 deletions
+2 -3
View File
@@ -3040,10 +3040,9 @@ CV_EXPORTS_W void undistortPoints( InputArray src, OutputArray dst,
@note Default version of cv::undistortPoints does 5 iterations to compute undistorted points.
*/
CV_EXPORTS_AS(undistortPointsExt) void undistortPoints( InputArray src, OutputArray dst,
CV_EXPORTS_AS(undistortPointsIter) void undistortPoints( InputArray src, OutputArray dst,
InputArray cameraMatrix, InputArray distCoeffs,
TermCriteria criteria,
InputArray R = noArray(), InputArray P = noArray());
InputArray R, InputArray P, TermCriteria criteria);
//! @} imgproc_transform