mirror of
https://github.com/opencv/opencv.git
synced 2026-09-11 12:52:33 -05:00
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