From e3fc850ec226d61ad16a85fe4cb8b2376f62beff Mon Sep 17 00:00:00 2001 From: xndcn Date: Tue, 30 Apr 2024 16:58:51 +0800 Subject: [PATCH] Fix doc about uniform parameter for imgproc calcBackProject function It is said "see above" because calcBackProject is listed under calcHist function in source file, while it is listed before due to the lexicographic ordering. --- modules/imgproc/include/opencv2/imgproc.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/imgproc/include/opencv2/imgproc.hpp b/modules/imgproc/include/opencv2/imgproc.hpp index c686e37bd6..40300cb464 100644 --- a/modules/imgproc/include/opencv2/imgproc.hpp +++ b/modules/imgproc/include/opencv2/imgproc.hpp @@ -3284,7 +3284,7 @@ images[0].channels() + images[1].channels()-1, and so on. size and depth as images[0] . @param ranges Array of arrays of the histogram bin boundaries in each dimension. See #calcHist . @param scale Optional scale factor for the output back projection. -@param uniform Flag indicating whether the histogram is uniform or not (see above). +@param uniform Flag indicating whether the histogram is uniform or not (see #calcHist). @sa calcHist, compareHist */