HomeSort by relevance Sort by last modified time
    Searched refs:widthStep (Results 1 - 17 of 17) sorted by null

  /external/opencv/cvaux/src/
cvdpstereo.cpp 84 CvSize size, int widthStep,
115 uchar* srcdata1 = src1 + widthStep * y;
116 uchar* srcdata2 = src2 + widthStep * y;
269 dispdata = dest + widthStep * y;
310 if( dest[(y-1)*widthStep+x] == dest[(y+1)*widthStep+x] )
312 dest[y*widthStep+x] = dest[(y-1)*widthStep+x];
322 if( ( CV_IMAX3( src1[(y-1)*widthStep+x], src1[y*widthStep+x],
    [all...]
extendededges.cpp 148 ((uchar*)image->imageData)[image->widthStep * cur.y + cur.x]++;
149 assert( ((uchar*)image->imageData)[image->widthStep * cur.y + cur.x] != 255 );
161 uchar flag = image->imageData[image->widthStep * cur.y + cur.x];
171 if( flag < 3 ) ((uchar*)image->imageData)[image->widthStep * cur.y + cur.x] = 255;
cvbgfg_acmmm2003.cpp 255 uchar* rowStart1 = (uchar*)curr_frame->imageData + y * curr_frame->widthStep + b;
256 uchar* rowStart2 = (uchar*)prev_frame->imageData + y * prev_frame->widthStep + b;
296 uchar* rowStart1 = (uchar*)(curr_frame->imageData) + y * curr_frame->widthStep + b;
297 uchar* rowStart2 = (uchar*)(prev_frame->imageData) + y * prev_frame->widthStep + b;
298 uchar* rowStart3 = (uchar*)(change_mask->imageData) + y * change_mask->widthStep;
331 int mask_step = model->Ftd->widthStep;
369 uchar* curr_data = (uchar*)(curr_frame->imageData) + i*curr_frame->widthStep + j*3;
370 uchar* prev_data = (uchar*)(prev_frame->imageData) + i*prev_frame->widthStep + j*3;
494 uchar *curr_data = (uchar*)(curr_frame->imageData)+i*curr_frame->widthStep+j*3;
495 uchar *prev_data = (uchar*)(prev_frame->imageData)+i*prev_frame->widthStep+j*3
    [all...]
enmin.cpp     [all...]
cvbgfg_gaussmix.cpp 198 const int p = i*first_frame->widthStep+j*first_frame->nChannels;
286 const int p = curr_frame->widthStep*i+j*nChannels;
583 bg_model->background->imageData[ bg_model->background->widthStep*i + j*nChannels + m] = (unsigned char)(g_point[n].g_values[0].mean[m]+0.5);
594 bg_model->foreground->imageData[ bg_model->foreground->widthStep*i + j] = pixelValue;
cvsubdiv2.cpp 150 uchar *ptr = (uchar*)(src->imageData + ip.y * src->widthStep + ip.x * 3);
cvfacedetection.cpp 148 buffImg += imgGray->widthStep;
cvtexture.cpp 632 sideLoop1++, (float*&)destData += dest->widthStep )
cvvecfacetracking.cpp 622 buffImg += rROI.y * imgGray->widthStep + rROI.x;
627 buffImg += imgGray->widthStep;
    [all...]
  /external/opencv/cxcore/include/
cxcore.hpp 159 int step() const { return image ? image->widthStep : 0; }
171 (uchar*)(image->imageData + y*image->widthStep) :
172 (uchar*)(image->imageData + (y+image->roi->yOffset)*image->widthStep +
185 (const uchar*)(image->imageData + y*image->widthStep) :
186 (const uchar*)(image->imageData + (y+image->roi->yOffset)*image->widthStep +
cvwimage.h 195 // WidthStep is the number of bytes to go to the pixel with the next y coord
196 int WidthStep() const {return image_->widthStep; }
210 return reinterpret_cast<T*>(image_->imageData + r*image_->widthStep);
214 return reinterpret_cast<T*>(image_->imageData + r*image_->widthStep);
219 return reinterpret_cast<T*>(image_->imageData + r*image_->widthStep) +
224 return reinterpret_cast<T*>(image_->imageData + r*image_->widthStep) +
571 header_.widthStep = width_step;
601 header_.widthStep = width_step;
cxtypes.h 380 OpenCV ignores it and uses widthStep instead. */
388 (==image->height*image->widthStep
391 int widthStep; /* Size of aligned image row in bytes. */
458 (((elemtype*)((image)->imageData + (image)->widthStep*(row)))[(col)])
    [all...]
  /external/opencv/otherlibs/highgui/
cvcap_socket.cpp 67 + ( y ) * ( i )->widthStep ) + ( n ))
  /external/opencv/cv/src/
cvsurf.cpp 82 icvResizeHaarPattern( const int src[][5], CvSurfHF* dst, int n, int oldSize, int newSize, int widthStep )
90 dst[k].p0 = dy1*widthStep + dx1;
91 dst[k].p1 = dy2*widthStep + dx1;
92 dst[k].p2 = dy1*widthStep + dx2;
93 dst[k].p3 = dy2*widthStep + dx2;
  /external/opencv/cxcore/src/
cxarray.cpp 1091 img->widthStep = step;
1095 img->widthStep = min_step;
1098 img->imageSize = img->widthStep * img->height;
1204 *step = img->widthStep;
    [all...]
cxpersistence.cpp     [all...]
  /external/opencv/
cvjni.h 44 + ( y ) * ( i )->widthStep ) + ( n ))

Completed in 400 milliseconds