From 07e2deccb974710d7058151e9bd0e572b6e03fa3 Mon Sep 17 00:00:00 2001 From: Ilya Lysenkov Date: Tue, 7 Jun 2011 12:22:07 +0000 Subject: [PATCH] Fixed the RGB2HSV formula (ticket #868) --- 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 b67f18077b..eb89b5ae4e 100644 --- a/modules/imgproc/doc/miscellaneous_transformations.rst +++ b/modules/imgproc/doc/miscellaneous_transformations.rst @@ -202,7 +202,7 @@ The function can do the following transformations: .. math:: - H \leftarrow \forkthree{{60(G - B)}/{S}}{if $V=R$}{{120+60(B - R)}/{S}}{if $V=G$}{{240+60(R - G)}/{S}}{if $V=B$} + H \leftarrow \forkthree{{60(G - B)}/{(V-min(R,G,B))}}{if $V=R$}{{120+60(B - R)}/{(V-min(R,G,B))}}{if $V=G$}{{240+60(R - G)}/{(V-min(R,G,B))}}{if $V=B$} If :math:`H<0` then