fixed duplicated paragraph
authorMarina Kolpakova <no@email>
Tue, 24 Apr 2012 09:26:34 +0000 (09:26 +0000)
committerMarina Kolpakova <no@email>
Tue, 24 Apr 2012 09:26:34 +0000 (09:26 +0000)
modules/imgproc/doc/geometric_transformations.rst

index 81197f1..8904b42 100644 (file)
@@ -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))