HomeSort by relevance Sort by last modified time
    Searched full:src_step (Results 76 - 97 of 97) sorted by null

1 2 34

  /external/opencv/cv/src/
cvoptflowbm.cpp 73 icvCopyBM_8u_C1R( const uchar* src, int src_step,
76 for( ; size.height--; src += src_step, dst += dst_step )
cvundistort.cpp 122 int cn, src_step, dst_step; local
169 src_step = src->step ? src->step : CV_STUB_STEP;
172 icvUnDistort_8u_CnR( src->data.ptr, src_step,
cvlkpyramid.cpp 226 icvCalcIxIy_32f( const float* src, int src_step, float* dstX, float* dstY, int dst_step,
233 src_step /= sizeof(src[0]);
236 for( ; height--; src += src_step, dstX += dst_step, dstY += dst_step )
238 const float* src2 = src + src_step;
239 const float* src3 = src + src_step*2;
    [all...]
cvfilter.cpp 340 int CvBaseImageFilter::fill_cyclic_buffer( const uchar* src, int src_step,
349 for( ; buf_count < buf_max_count && y < y2; buf_count++, y++, src += src_step )
    [all...]
cvcolor.cpp 2243 int src_step, dst_step; local
    [all...]
  /external/opencv/cxcore/src/
cxarithm.cpp 536 int src_step, dst_step, tdst_step, mask_step; local
707 src_step = src->step;
724 src_step = tdst_step = dst_step = mask_step = CV_STUB_STEP;
727 IPPI_CALL( func( src->data.ptr + y*src->step, src_step,
1008 int src_step, dst_step, tdst_step, mask_step; local
    [all...]
_cxcore.h 292 typedef CvStatus (CV_STDCALL * CvCopyMaskFunc)(const void* src, int src_step,
cxcmp.cpp 1502 int src_step, dst_step; local
    [all...]
cxmatmul.cpp 54 icvGEMM_CopyBlock( const uchar* src, int src_step,
61 for( ; size.height--; src += src_step, dst += dst_step )
82 icvGEMM_TransposeBlock( const uchar* src, int src_step,
93 for( j = 0; j < size.height; j++, _src += src_step )
97 for( j = 0; j < size.height*2; j += 2, _src += src_step )
106 for( j = 0; j < size.height*4; j += 4, _src += src_step )
    [all...]
_cxipp.h 51 ( const uchar* src, int src_step,
    [all...]
  /external/opencv3/modules/imgproc/src/opencl/
canny.cl 119 __kernel void stage1_with_sobel(__global const uchar *src, int src_step, int src_offset, int rows, int cols,
136 smem[j] = loadpix(src + mad24(y, src_step, mad24(x, cn * (int)sizeof(TYPE), src_offset)));
  /external/opencv3/apps/createsamples/
utility.cpp 256 int src_step; local
282 CV_CALL( cvGetRawData( src, &src_data, &src_step, &src_size ) );
414 uchar* s = src_data + isrc_y * src_step + isrc_x;
433 i01 = s[src_step];
438 i11 = s[src_step+1];
    [all...]
  /external/opencv/cvaux/src/
_cvvm.h 108 uchar* src, int src_step,
  /external/opencv3/modules/core/src/opencl/
reduce.cl 563 __kernel void reduce(__global const uchar * srcptr, int src_step, int src_offset, int cols,
583 int src_index = mad24(id / cols, src_step, mul24(id % cols, srcTSIZE));
  /external/opencv3/modules/video/
opencl_kernels_video.cpp 544 "__kernel void centeredGradientKernel(__global const float* src_ptr, int src_col, int src_row, int src_step,\n"
553 "dx[y * d_step+ x] = 0.5f * (src_ptr[y * src_step + src_x1] - src_ptr[y * src_step+ src_x2]);\n"
556 "dy[y * d_step+ x] = 0.5f * (src_ptr[src_y1 * src_step + x] - src_ptr[src_y2 * src_step+ x]);\n"
    [all...]
  /external/opencv3/modules/core/src/
matmul.cpp 56 GEMM_CopyBlock( const uchar* src, size_t src_step,
63 for( ; size.height--; src += src_step, dst += dst_step )
86 GEMM_TransposeBlock( const uchar* src, size_t src_step,
97 for( j = 0; j < size.height; j++, _src += src_step )
101 for( j = 0; j < size.height*2; j += 2, _src += src_step )
110 for( j = 0; j < size.height*4; j += 4, _src += src_step )
    [all...]
  /external/opencv3/modules/videoio/src/
cap_mjpeg_encoder.cpp 1405 int src_step = x_scale * 8; local
    [all...]
  /external/libvpx/libvpx/third_party/libyuv/source/
scale_argb.cc 150 int src_step, uint8* dst_argb, int dst_width) =
  /external/libyuv/files/source/
scale_argb.cc 150 int src_step, uint8* dst_argb, int dst_width) =
  /external/opencv/otherlibs/highgui/
grfmt_jpeg.cpp 1796 int src_step = x_scale * 8; local
    [all...]
  /external/opencv3/modules/imgproc/src/
smooth.cpp     [all...]
filter.cpp     [all...]

Completed in 563 milliseconds

1 2 34