1 | initial version |
above formula would be cv::norm(g,h,CV_L2).
still note, that to compare histograms, you'd rather use a CHI_SQR or HELLINGER distance instead of L2, that's why there is compareHist()
2 | No.2 Revision |
above formula would be cv::norm(g,h,CV_L2)cv::norm(g,h).
still note, that to compare histograms, you'd rather use a CHI_SQR or HELLINGER distance instead of L2, that's why there is compareHist()
3 | No.3 Revision |
above formula would be cv::norm(g,h)cv::norm(g,h, NORM_L2SQR).
still note, that to compare histograms, you'd rather use a CHI_SQR or HELLINGER distance instead of L2, that's why there is compareHist()