I know the default value for norm_type used when calling the function is 4, but what does this correspond to? The options are NORM_INF, NORM_L1 and NORM_L2. Which of these is 4? And while I’m at it, what are the values for the rest of them? I can’t find #defines for these anywhere.
Share
These are defined in
modules/core/include/opencv2/core/core.hpp, as anenum:So default is L2 norm (euclidean).
Also, the OpenCV docs say that the default is
NORM_L2.