Fixed formula of YCrCb to RGB conversion (bug #2725)

This commit is contained in:
Daniil Osokin 2013-01-28 18:29:01 +04:00
parent 8521ac5d21
commit 4c9c27b244

View File

@ -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::