-
-
Notifications
You must be signed in to change notification settings - Fork 56.5k
Typo in Assert in fisheye.cpp #15788
Copy link
Copy link
Closed
Milestone
Description
I think you want to assert K2 and D2 not K1 and D1 again in see last line
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));
In: https://github.com/opencv/opencv/blob/master/modules/calib3d/src/fisheye.cpp#L860
Reactions are currently unavailable