1
0
mirror of https://github.com/opencv/opencv_contrib.git synced 2025-10-18 17:24:28 +08:00

Merge pull request #2890 from dzywater:master

This commit is contained in:
Alexander Alekhin
2021-03-13 12:40:06 +00:00

View File

@@ -2222,7 +2222,7 @@ void cv::omnidir::stereoRectify(InputArray R, InputArray T, OutputArray R1, Outp
e1.copyTo(_R1.row(0));
e2.copyTo(_R1.row(1));
e3.copyTo(_R1.row(2));
_R2 = R21 * _R1;
_R2 = _R1 * R21;
}