mirror of
https://github.com/opencv/opencv.git
synced 2026-07-29 15:23:05 +04:00
6676c04d7c
In fitEllipseDirect, `double det = fabs(cv::determinant(M))` applies fabs() unnecessarily since the next line `if (fabs(det) > 1.0e-10)` already takes the absolute value. Remove the outer fabs() to avoid the redundant operation.