From 6cd3d111bfb29e52092ebe3e8254687146930d47 Mon Sep 17 00:00:00 2001 From: vp153 Date: Mon, 5 Apr 2010 16:13:39 +0000 Subject: [PATCH] fixed fast element access sample (SF bug #2976645) git-svn-id: https://code.ros.org/svn/opencv/trunk@2989 73c94f0f-984f-4a5f-82bc-2d8db8d8ee08 --- opencv/doc/cxcore_introduction.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.39.2