From 3001db47767eaae32e25260461d0ccce56075c89 Mon Sep 17 00:00:00 2001 From: ClaudioMartino Date: Mon, 7 Jul 2025 15:34:33 +0200 Subject: [PATCH] Fix: Removed '*/' from equation in histogram comparison doc --- .../histogram_comparison/histogram_comparison.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tutorials/imgproc/histograms/histogram_comparison/histogram_comparison.markdown b/doc/tutorials/imgproc/histograms/histogram_comparison/histogram_comparison.markdown index 2a7517fd95..eac3db03d2 100644 --- a/doc/tutorials/imgproc/histograms/histogram_comparison/histogram_comparison.markdown +++ b/doc/tutorials/imgproc/histograms/histogram_comparison/histogram_comparison.markdown @@ -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 ----