mirror of
https://github.com/opencv/opencv.git
synced 2024-11-25 11:40:44 +08:00
Fixed typo in assertion
This commit is contained in:
parent
d8ab83600b
commit
86a8ff6129
@ -857,8 +857,8 @@ double cv::fisheye::stereoCalibrate(InputArrayOfArrays objectPoints, InputArrayO
|
||||
|
||||
CV_Assert(K1.empty() || (K1.size() == Size(3,3)));
|
||||
CV_Assert(D1.empty() || (D1.total() == 4));
|
||||
CV_Assert(K2.empty() || (K1.size() == Size(3,3)));
|
||||
CV_Assert(D2.empty() || (D1.total() == 4));
|
||||
CV_Assert(K2.empty() || (K2.size() == Size(3,3)));
|
||||
CV_Assert(D2.empty() || (D2.total() == 4));
|
||||
|
||||
CV_Assert((!K1.empty() && !K2.empty() && !D1.empty() && !D2.empty()) || !(flags & CALIB_FIX_INTRINSIC));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user