From f1a0ab365d71b04a885684841756b4ac0702f149 Mon Sep 17 00:00:00 2001 From: Marina Kolpakova Date: Tue, 24 Apr 2012 09:26:34 +0000 Subject: [PATCH] fixed duplicated paragraph --- modules/imgproc/doc/geometric_transformations.rst | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/modules/imgproc/doc/geometric_transformations.rst b/modules/imgproc/doc/geometric_transformations.rst index 81197f1..8904b42 100644 --- a/modules/imgproc/doc/geometric_transformations.rst +++ b/modules/imgproc/doc/geometric_transformations.rst @@ -2,10 +2,8 @@ Geometric Image Transformations =============================== .. highlight:: cpp -The functions in this section perform various geometrical transformations of 2D images. They do not change the image content but deform the pixel grid and map this deformed grid to the destination image. In fact, to avoid sampling artifacts, the mapping is done in the reverse order, from destination to the source. That is, for each pixel -:math:`(x, y)` of the destination image, the functions compute coordinates of the corresponding "donor" pixel in the source image and copy the pixel value: - The functions in this section perform various geometrical transformations of 2D images. They do not change the image content but deform the pixel grid and map this deformed grid to the destination image. In fact, to avoid sampling artifacts, the mapping is done in the reverse order, from destination to the source. That is, for each pixel :math:`(x, y)` of the destination image, the functions compute coordinates of the corresponding "donor" pixel in the source image and copy the pixel value: + .. math:: \texttt{dst} (x,y)= \texttt{src} (f_x(x,y), f_y(x,y)) -- 2.7.4