Skip to content

Commit

Permalink
Update omnidir.cpp
Browse files Browse the repository at this point in the history
Fixed R2
  • Loading branch information
dzywater authored and alalek committed Mar 13, 2021
1 parent 43fff21 commit 9240579
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/ccalib/src/omnidir.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;

}

Expand Down

0 comments on commit 9240579

Please sign in to comment.