From 2e9ef3f9e339eb458cda342ebea4e6031bc3bb16 Mon Sep 17 00:00:00 2001 From: emiswelt Date: Tue, 8 Dec 2015 22:28:32 +0000 Subject: [PATCH] Changed parameter order of cv::stereoRectify in documentation, so it matches the code. --- modules/calib3d/include/opencv2/calib3d.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/calib3d/include/opencv2/calib3d.hpp b/modules/calib3d/include/opencv2/calib3d.hpp index 21fbf9ddda..fd50afab09 100644 --- a/modules/calib3d/include/opencv2/calib3d.hpp +++ b/modules/calib3d/include/opencv2/calib3d.hpp @@ -922,8 +922,8 @@ CV_EXPORTS_W double stereoCalibrate( InputArrayOfArrays objectPoints, /** @brief Computes rectification transforms for each head of a calibrated stereo camera. @param cameraMatrix1 First camera matrix. -@param cameraMatrix2 Second camera matrix. @param distCoeffs1 First camera distortion parameters. +@param cameraMatrix2 Second camera matrix. @param distCoeffs2 Second camera distortion parameters. @param imageSize Size of the image used for stereo calibration. @param R Rotation matrix between the coordinate systems of the first and the second cameras.