mirror of
https://github.com/opencv/opencv.git
synced 2026-07-21 19:33:03 +04:00
5e4592440e
The tutorial code used cv.NORM_L2 (which takes a square root) and then averaged those values. The correct RMSE formula should use NORM_L2SQR to get squared errors, average them, and take the square root at the end. Updated the explanatory text to match. Fixes https://github.com/opencv/opencv/issues/28651