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

  /external/opencv/cvaux/src/
cvlines.cpp 313 // img_step - distance between lines in bytes
320 icvDeleteMoire8u( uchar * img, int img_step, CvSize img_size, int cn )
323 uchar *src = img, *dst = img + img_step;
325 if( !img || img_size.width <= 0 || img_size.height <= 0 || img_step < img_size.width * 3 )
330 for( y = 1; y < img_size.height; y++, src = dst, dst += img_step )
374 int img_step = 0; local
381 cvGetImageRawData( img, &img_data, &img_step, &img_size );
388 CV_CALL( icvDeleteMoire8u( img_data, img_step, img_size, img->nChannels ));
412 int img_step = 0; local
419 cvGetImageRawData( img, &img_data, &img_step, &img_size )
456 int img_step = 0; local
    [all...]
cveigenobjects.cpp 1204 int img_step = 0, old_step = 0; local
    [all...]
  /external/opencv3/modules/cudastereo/src/cuda/
disparity_bilateral_filter.cu 77 const uchar* img, size_t img_step, int h, int w,
104 const uchar* ic = img + y * img_step + channels * x;
112 const uchar* in = img + yi * img_step + channels * xi;
stereobm.cu 232 __global__ void stereoKernel(unsigned char *left, unsigned char *right, size_t img_step, PtrStepb disp, int maxdisp)
263 InitColSSD<RADIUS>(x_tex, y_tex, img_step, left, right, d, col_ssd);
267 InitColSSD<RADIUS>(x_tex + BLOCK_W, y_tex, img_step, left, right, d, col_ssd_extra);
283 int idx1 = y_tex * img_step + x_tex;
284 int idx2 = (y_tex + (2 * RADIUS + 1)) * img_step + x_tex;
  /external/opencv3/modules/objdetect/src/opencl/
objdetect_hog.cl 567 const int img_step, const int grad_quadstep, const int qangle_step,
576 __global const uchar4* row = img + gidY * img_step;
624 a = convert_float4(img[(gidY - 1) * img_step + x].xyzw);
625 b = convert_float4(img[(gidY + 1) * img_step + x].xyzw);
666 const int img_step, const int grad_quadstep, const int qangle_step,
675 __global const uchar* row = img + gidY * img_step;
703 float a = (float) img[ (gidY + 1) * img_step + x ];
704 float b = (float) img[ (gidY - 1) * img_step + x ];
  /external/opencv/cv/src/
cvcontours.cpp 157 int img_step; /* image step */ member in struct:_CvContourScanner
235 scanner->img_step = step;
860 step = scanner->img_step;
1153 int img_step = 0; local
    [all...]
  /external/opencv3/modules/imgproc/src/
contours.cpp 143 int img_step; /* image step */ member in struct:_CvContourScanner
216 scanner->img_step = step;
999 int step = scanner->img_step;
1307 int img_step = 0; local
    [all...]

Completed in 115 milliseconds