From 54fe519ae0b2cc6c73934b3d6fe9c96cf5ad5a34 Mon Sep 17 00:00:00 2001 From: Alexander Smorkalov Date: Mon, 23 Jun 2025 09:21:25 +0300 Subject: [PATCH] phaseCorrelate documentation imrpovement. --- modules/imgproc/include/opencv2/imgproc.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/imgproc/include/opencv2/imgproc.hpp b/modules/imgproc/include/opencv2/imgproc.hpp index 059d26a41c..27b8fca24f 100644 --- a/modules/imgproc/include/opencv2/imgproc.hpp +++ b/modules/imgproc/include/opencv2/imgproc.hpp @@ -2992,9 +2992,9 @@ Calculates the cross-power spectrum of two supplied source arrays. The arrays ar with getOptimalDFTSize. The function performs the following equations: -- First it applies a Hanning window (see ) to each -image to remove possible edge effects. This window is cached until the array size changes to speed -up processing time. +- First it applies a Hanning window to each image to remove possible edge effects, if it's provided +by user. See @ref createHanningWindow and . This window may +be cached until the array size changes to speed up processing time. - Next it computes the forward DFTs of each source array: \f[\mathbf{G}_a = \mathcal{F}\{src_1\}, \; \mathbf{G}_b = \mathcal{F}\{src_2\}\f] where \f$\mathcal{F}\f$ is the forward DFT.