From: StevenPuttemans Date: Mon, 12 May 2014 12:47:10 +0000 (+0200) Subject: fix bug 3434 X-Git-Tag: accepted/tizen/6.0/unified/20201030.111113~1314^2~498^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6c59e39f7c120ebd56bd2236a02e35ac28a26736;p=platform%2Fupstream%2Fopencv.git fix bug 3434 --- diff --git a/doc/tutorials/core/basic_linear_transform/basic_linear_transform.rst b/doc/tutorials/core/basic_linear_transform/basic_linear_transform.rst index 613f4e1..a641435 100644 --- a/doc/tutorials/core/basic_linear_transform/basic_linear_transform.rst +++ b/doc/tutorials/core/basic_linear_transform/basic_linear_transform.rst @@ -192,7 +192,7 @@ Explanation image.convertTo(new_image, -1, alpha, beta); - where :convert_to:`convertTo <>` would effectively perform *new_image = a*image + beta*. However, we wanted to show you how to access each pixel. In any case, both methods give the same result. + where :convert_to:`convertTo <>` would effectively perform *new_image = a*image + beta*. However, we wanted to show you how to access each pixel. In any case, both methods give the same result but convertTo is more optimized and works a lot faster. Result =======