Searched refs:widthStep (Results 1 - 17 of 17) sorted by relevance

/external/opencv/cvaux/src/
H A Dcvdpstereo.cpp84 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
82 icvFindStereoCorrespondenceByBirchfieldDP( uchar* src1, uchar* src2, uchar* disparities, CvSize size, int widthStep, int maxDisparity, float _param1, float _param2, float _param3, float _param4, float _param5 ) argument
[all...]
H A Dextendededges.cpp148 ((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;
H A Dcvbgfg_acmmm2003.cpp255 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
[all...]
H A Denmin.cpp1299 m_left_img -> widthStep,
1301 m_right_img -> widthStep,
1317 m_left_img ->widthStep,
1319 m_right_img -> widthStep,
1321 m_virtual_img -> widthStep,
1335 m_left_img ->widthStep,
1337 m_right_img -> widthStep,
1339 m_disparity_img -> widthStep,
1353 m_left_img ->widthStep,
1355 m_right_img -> widthStep,
[all...]
H A Dcvbgfg_gaussmix.cpp198 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;
H A Dcvsubdiv2.cpp150 uchar *ptr = (uchar*)(src->imageData + ip.y * src->widthStep + ip.x * 3);
H A Dcvfacedetection.cpp148 buffImg += imgGray->widthStep;
H A Dcvtexture.cpp632 sideLoop1++, (float*&)destData += dest->widthStep )
H A Dcvvecfacetracking.cpp622 buffImg += rROI.y * imgGray->widthStep + rROI.x;
627 buffImg += imgGray->widthStep;
/external/opencv/cxcore/include/
H A Dcxcore.hpp159 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 +
H A Dcvwimage.h196 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;
H A Dcxtypes.h380 OpenCV ignores it and uses widthStep instead. */
388 (==image->height*image->widthStep
391 int widthStep; /* Size of aligned image row in bytes. */ member in struct:_IplImage
458 (((elemtype*)((image)->imageData + (image)->widthStep*(row)))[(col)])
/external/opencv/otherlibs/highgui/
H A Dcvcap_socket.cpp67 + ( y ) * ( i )->widthStep ) + ( n ))
/external/opencv/cv/src/
H A Dcvsurf.cpp82 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/
H A Dcxarray.cpp1091 img->widthStep = step;
1095 img->widthStep = min_step;
1098 img->imageSize = img->widthStep * img->height;
1204 *step = img->widthStep;
2047 ptr += img->roi->yOffset*img->widthStep +
2069 ptr += y*img->widthStep + x*pix_size;
2817 img->roi->yOffset*img->widthStep +
2819 img->widthStep ));
2832 img->roi->yOffset*img->widthStep +
2834 img->widthStep ));
[all...]
H A Dcxpersistence.cpp3950 if( size.width*image->nChannels*CV_ELEM_SIZE(depth) == image->widthStep )
3958 cvWriteRawData( fs, image->imageData + y*image->widthStep, size.width, dt );
4020 if( width*CV_ELEM_SIZE(elem_type) == image->widthStep )
4031 image->imageData + y*image->widthStep, dt ));
/external/opencv/
H A Dcvjni.h44 + ( y ) * ( i )->widthStep ) + ( n ))

Completed in 3530 milliseconds