/external/opencv/cvaux/src/ |
cvdpstereo.cpp | 86 CvSize size, int widthStep, 117 uchar* srcdata1 = src1 + widthStep * y; 118 uchar* srcdata2 = src2 + widthStep * y; 271 dispdata = dest + widthStep * y; 312 if( dest[(y-1)*widthStep+x] == dest[(y+1)*widthStep+x] ) 314 dest[y*widthStep+x] = dest[(y-1)*widthStep+x]; 324 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;
|
/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;
|
/external/opencv3/modules/core/include/opencv2/core/ |
wimage.hpp | 191 // WidthStep is the number of bytes to go to the pixel with the next y coord 192 int WidthStep() const {return image_->widthStep; } 206 return reinterpret_cast<T*>(image_->imageData + r*image_->widthStep); 210 return reinterpret_cast<T*>(image_->imageData + r*image_->widthStep); 215 return reinterpret_cast<T*>(image_->imageData + r*image_->widthStep) + 220 return reinterpret_cast<T*>(image_->imageData + r*image_->widthStep) + 551 header_.widthStep = width_step; 581 header_.widthStep = width_step;
|
/external/opencv3/modules/videoio/src/ |
cap_pvapi.cpp | 571 frame->widthStep = (int)frameWidth; 578 frame->widthStep = (int)frameWidth*2; 585 frame->widthStep = (int)frameWidth*3; 592 frame->widthStep = (int)frameWidth*4;
|
cap_qtkit.mm | 600 image->widthStep = (int)rowBytes; 611 bgr_image->widthStep = (int)rowBytes; 781 image->widthStep = (int)rowBytes; 794 bgr_image->widthStep = (int)rowBytes; 1016 int rowstart = argbimage->widthStep * j; 1017 for (int i = rowstart; i < rowstart+argbimage->widthStep; i+=4) { 1036 bytesPerRow:argbimage->widthStep [all...] |
cap_ffmpeg.cpp | 241 image->widthStep, image->width, image->height, image->nChannels, image->origin) !=0;
|
cap_avfoundation.mm | 720 image->widthStep = (int)rowBytes; 731 bgr_image->widthStep = (int)rowBytes; 949 image->widthStep = (int)rowBytes; 962 bgr_image->widthStep = (int)rowBytes; [all...] |
cap_vfw.cpp | 226 cvSetData( &src, dataPtr, src.widthStep ); 536 cvSetData( &src, hdr->lpData, src.widthStep ); 820 image->widthStep != cvAlign(image->width*image->nChannels*((image->depth & 255)/8), 4))
|
cap_giganetix.cpp | 478 m_raw_image->widthStep = newWidth; 495 m_raw_image->widthStep = newWidth * 3;
|
cap_xine.cpp | 105 offset = y * capture->yuv_frame->widthStep; 140 int line = yuv->widthStep;
|
/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/opencv3/modules/imgproc/test/ |
test_contours.cpp | 189 int step = img->widthStep; 196 uchar* t = (uchar*)(img->imageData + img->widthStep*i + j);
|
/external/opencv3/samples/gpu/ |
opticalflow_nvidia_api.cpp | 107 row += image->widthStep; 131 row += image->widthStep; 237 row += flowField->widthStep; 266 row += image->widthStep;
|
/external/opencv3/apps/createsamples/ |
utility.cpp | 635 pmask = ( (uchar*) (data->mask->imageData + r * data->mask->widthStep) 656 pmask = ( (uchar*) (data->mask->imageData + r * data->mask->widthStep) 660 psrc = ( (uchar*) (data->src->imageData + r * data->src->widthStep) 663 ( (uchar*) (data->erode->imageData + r * data->erode->widthStep) 666 ( (uchar*)(data->dilate->imageData + r * data->dilate->widthStep) 790 pimg = (uchar*) img->imageData + r * img->widthStep + c; 792 palpha = (uchar*) maskimg->imageData + r * maskimg->widthStep + c; [all...] |
/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...] |
/external/opencv3/modules/core/src/ |
array.cpp | 936 img->widthStep = step; 940 img->widthStep = min_step; 943 img->imageSize = img->widthStep * img->height; 1029 *step = img->widthStep; [all...] |
/external/opencv/ |
cvjni.h | 44 + ( y ) * ( i )->widthStep ) + ( n ))
|