From 3ae22014a0b07fc62bdc67b99c6d6c0532cf06b4 Mon Sep 17 00:00:00 2001 From: Vadim Pisarevsky Date: Sat, 3 Dec 2011 20:06:57 +0000 Subject: [PATCH] fixed description of inRange/inRangeS (ticket #1500) --- modules/core/doc/operations_on_arrays.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/core/doc/operations_on_arrays.rst b/modules/core/doc/operations_on_arrays.rst index 7019e74fd7..0d3374a9f2 100644 --- a/modules/core/doc/operations_on_arrays.rst +++ b/modules/core/doc/operations_on_arrays.rst @@ -1352,13 +1352,13 @@ The function checks the range as follows: .. math:: - \texttt{dst} (I)= \texttt{lowerb} (I)_0 \leq \texttt{src} (I)_0 < \texttt{upperb} (I)_0 + \texttt{dst} (I)= \texttt{lowerb} (I)_0 \leq \texttt{src} (I)_0 \leq \texttt{upperb} (I)_0 * For two-channel arrays: .. math:: - \texttt{dst} (I)= \texttt{lowerb} (I)_0 \leq \texttt{src} (I)_0 < \texttt{upperb} (I)_0 \land \texttt{lowerb} (I)_1 \leq \texttt{src} (I)_1 < \texttt{upperb} (I)_1 + \texttt{dst} (I)= \texttt{lowerb} (I)_0 \leq \texttt{src} (I)_0 \leq \texttt{upperb} (I)_0 \land \texttt{lowerb} (I)_1 \leq \texttt{src} (I)_1 \leq \texttt{upperb} (I)_1 * and so forth.