From 4c9c27b244973a6681d6eefa5ef0520277d622c5 Mon Sep 17 00:00:00 2001 From: Daniil Osokin Date: Mon, 28 Jan 2013 18:29:01 +0400 Subject: [PATCH] Fixed formula of YCrCb to RGB conversion (bug #2725) --- modules/imgproc/doc/miscellaneous_transformations.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/imgproc/doc/miscellaneous_transformations.rst b/modules/imgproc/doc/miscellaneous_transformations.rst index 6d91d89..4ebf6d5 100644 --- a/modules/imgproc/doc/miscellaneous_transformations.rst +++ b/modules/imgproc/doc/miscellaneous_transformations.rst @@ -183,7 +183,7 @@ The function can do the following transformations: .. math:: - G \leftarrow Y - 0.344 \cdot (Cr - delta) - 0.714 \cdot (Cb - delta) + G \leftarrow Y - 0.714 \cdot (Cr - delta) - 0.344 \cdot (Cb - delta) .. math:: -- 2.7.4