From: vp153 Date: Mon, 5 Apr 2010 16:13:39 +0000 (+0000) Subject: fixed fast element access sample (SF bug #2976645) X-Git-Url: http://rtime.felk.cvut.cz/gitweb/opencv.git/commitdiff_plain/6cd3d111bfb29e52092ebe3e8254687146930d47 fixed fast element access sample (SF bug #2976645) git-svn-id: https://code.ros.org/svn/opencv/trunk@2989 73c94f0f-984f-4a5f-82bc-2d8db8d8ee08 --- diff --git a/opencv/doc/cxcore_introduction.tex b/opencv/doc/cxcore_introduction.tex index 4e3f90e2..199da48b 100644 --- a/opencv/doc/cxcore_introduction.tex +++ b/opencv/doc/cxcore_introduction.tex @@ -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(y);