]> rtime.felk.cvut.cz Git - opencv.git/commitdiff
fixed fast element access sample (SF bug #2976645)
authorvp153 <vp153@73c94f0f-984f-4a5f-82bc-2d8db8d8ee08>
Mon, 5 Apr 2010 16:13:39 +0000 (16:13 +0000)
committervp153 <vp153@73c94f0f-984f-4a5f-82bc-2d8db8d8ee08>
Mon, 5 Apr 2010 16:13:39 +0000 (16:13 +0000)
git-svn-id: https://code.ros.org/svn/opencv/trunk@2989 73c94f0f-984f-4a5f-82bc-2d8db8d8ee08

opencv/doc/cxcore_introduction.tex

index 4e3f90e2ad2d9dd6870544109a97b0b2d6cea40d..199da48b2366f4713288c48746e6563b0fc9e662 100644 (file)
@@ -374,7 +374,7 @@ for(; it != it_end; ++it)
 
 // method 2. process the first chroma plane using pre-stored row pointer.
 // method 3. process the second chroma plane using
-             individual element access operations
+//           individual element access operations
 for( int y = 0; y < img_yuv.rows; y++ )
 {
     uchar* Uptr = planes[1].ptr<uchar>(y);