1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-21 19:33:03 +04:00

Merge pull request #27518 from ClaudioMartino:fix_hist_comp_doc

Fix: Removed '*/' from equation in histogram comparison doc
This commit is contained in:
Alexander Smorkalov
2025-07-08 11:12:26 +03:00
committed by GitHub
@@ -46,7 +46,7 @@ Theory
\f[d(H_1,H_2) = 2 * \sum _I \frac{\left(H_1(I)-H_2(I)\right)^2}{H_1(I)+H_2(I)}\f]
-# **Kullback-Leibler divergence ( cv::HISTCMP_KL_DIV )**
\f[d(H_1,H_2) = \sum _I H_1(I) \log \left(\frac{H_1(I)}{H_2(I)}\right)\f] */
\f[d(H_1,H_2) = \sum _I H_1(I) \log \left(\frac{H_1(I)}{H_2(I)}\right)\f]
Code
----