HomeSort by relevance Sort by last modified time
    Searched full:src_step (Results 1 - 25 of 36) sorted by null

1 2

  /external/opencv/cv/src/
cvsamplers.cpp 88 icvAdjustRect( const void* srcptr, int src_step, int pix_size,
122 src += ip.y * src_step;
135 src += rect.height*src_step;
148 ( const srctype* src, int src_step, CvSize src_size, \
171 src_step /= sizeof(src[0]); \
178 src += ip.y * src_step + ip.x; \
181 icvCopySubpix_##flavor##_C1R_p( src, src_step*sizeof(src[0]), \
186 for( i = 0; i < win_size.height; i++, src += src_step, \
193 cast_macro(src[j+src_step])*a21 + \
194 cast_macro(src[j+src_step+1])*a22;
548 int cn, src_step, dst_step; local
    [all...]
cvthresh.cpp 45 icvThresh_8u_C1R( const uchar* src, int src_step, uchar* dst, int dst_step,
87 for( i = 0; i < roi.height; i++, src += src_step, dst += dst_step )
113 icvThresh_32f_C1R( const float *src, int src_step, float *dst, int dst_step,
125 src_step /= sizeof(src[0]);
131 for( i = 0; i < roi.height; i++, isrc += src_step, idst += dst_step )
142 for( i = 0; i < roi.height; i++, isrc += src_step, idst += dst_step )
153 for( i = 0; i < roi.height; i++, src += src_step, dst += dst_step )
167 for( i = 0; i < roi.height; i++, isrc += src_step, idst += dst_step )
178 for( i = 0; i < roi.height; i++, isrc += src_step, idst += dst_step )
306 int src_step, dst_step local
    [all...]
_cvimgproc.h 52 void icvSepConvSmall3_32f( float* src, int src_step, float* dst, int dst_step,
104 ( const uchar* src, int src_step, CvSize src_size,
107 ( const uchar* src, int src_step, CvSize src_size,
110 ( const float* src, int src_step, CvSize src_size,
114 ( const uchar* src, int src_step, CvSize src_size,
117 ( const uchar* src, int src_step, CvSize src_size,
120 ( const float* src, int src_step, CvSize src_size,
cvpyramids.cpp 496 icvPyrDownBorder_##flavor##_CnR( const arrtype *src, int src_step, CvSize src_size,
    [all...]
cvderiv.cpp 47 void icvSepConvSmall3_32f( float* src, int src_step, float* dst, int dst_step,
54 (src_step & 3) == 0 && (dst_step & 3) == 0 &&
57 src_step /= sizeof(src[0]);
73 assert( src_step >= src_size.width && dst_step >= dst_width );
81 buffer_step = src_step;
86 for( y = 0; y <= src_size.height; y++, src += src_step,
90 float* src2 = src + src_step;
91 float* src3 = src + src_step*2;
298 int src_step = src->step ? src->step : CV_STUB_STEP; local
318 ipp_sobel_func_8u ? ipp_sobel_func_8u( src_ptr, src_step, dst_ptr, dst_step
839 int src_step = src->step ? src->step : CV_STUB_STEP; local
    [all...]
cvsumpixels.cpp 327 int src_step, sum_step, sqsum_step, tilted_step; local
401 src_step = src->step ? src->step : CV_STUB_STEP;
411 icvIntegral_8u32s_C1R_p( src->data.ptr, src_step,
416 icvSqrIntegral_8u32s64f_C1R_p( src->data.ptr, src_step, sum->data.i,
421 IPPI_CALL( func_c1( src->data.ptr, src_step, sum->data.ptr, sum_step,
427 IPPI_CALL( func_cn( src->data.ptr, src_step, sum->data.ptr, sum_step,
cvmorph.cpp 321 int CvMorphology::fill_cyclic_buffer( const uchar* src, int src_step,
329 return CvBaseImageFilter::fill_cyclic_buffer( src, src_step, y0, y1, y2 );
332 for( ; buf_count < buf_max_count && y < y2; buf_count++, y++, src += src_step )
    [all...]
cvpyrsegmentation.cpp 181 icvPyrSegmentation8uC1R( uchar * src_image, int src_step,
220 if( roi.width <= 0 || roi.height <= 0 || src_step < roi.width || dst_step < roi.width )
264 cvInitMatHeader( &_src, roi.height, roi.width, CV_8UC1, src_image, src_step );
267 /*_CV_CHECK( icvCvtTo_32f_C1R( src_image, src_step, pyramida, step, roi, CV_8UC1 ));*/
594 icvPyrSegmentation8uC3R( uchar * src_image, int src_step,
638 src_step < roi.width * 3 || dst_step < roi.width * 3 ) return CV_BADSIZE_ERR;
681 cvInitMatHeader( &_src, roi.height, roi.width, CV_8UC3, src_image, src_step );
684 /*_CV_CHECK( icvCvtTo_32f_C1R( src_image, src_step, pyramida, step,
1839 int src_step = 0, dst_step = 0; local
    [all...]
cvsmooth.cpp 649 icvMedianBlur_8u_CnR_O1( uchar* src, int src_step, uchar* dst, int dst_step,
667 assert( src_step != 0 );
684 COP( c, j, src[src_step*i+cn*j+c], ++ );
692 p = src + src_step * MAX( 0, i-r-1 );
700 p = src + src_step * MIN( m-1, i+r );
797 icvMedianBlur_8u_CnR_Om( uchar* src, int src_step, uchar* dst, int dst_step,
806 uchar* src_max = src + size.height*src_step;
825 const uchar* src0 = src + src_step*(y-1);
826 const uchar* src1 = src0 + src_step;
827 const uchar* src2 = src1 + src_step;
    [all...]
cvoptflowbm.cpp 73 icvCopyBM_8u_C1R( const uchar* src, int src_step,
76 for( ; size.height--; src += src_step, dst += dst_step )
  /external/opencv/cvaux/src/
cvlines.cpp 45 icvFetchLine8uC3R( uchar * src, int src_step,
53 src_step < src_size.width * 3 ||
68 src += start.y * src_step + start.x * 3;
72 src_step = (src_step ^ i) - i;
94 src += (src_step & mask) + 3;
117 src += src_step + (mask & 3);
198 int src_step, /* line step */
214 cvInitMatHeader( &mat, src_size.height, src_size.width, CV_8UC3, src, src_step );
cvsegment.cpp 235 int dst_step, src_step;
239 cvGetRawData( srcArr, (uchar**)&src, &src_step, &size );
250 src += src_step;
268 dv[0] = src[0] - src[-src_step];
270 dv[1] = src[1] - src[1-src_step];
272 dv[2] = src[2] - src[2-src_step];
309 d[0] = src[0] - src[-src_step];
312 d[1] = src[1] - src[1-src_step];
315 d[2] = src[2] - src[2-src_step];
cvhmm.cpp     [all...]
  /external/opencv/cxcore/src/
cxconvert.cpp 450 int src_step, dst_step = 0; local
499 src_step = src->step;
505 src_step = dst_step = CV_STUB_STEP;
517 IPPI_CALL( func( src->data.ptr, src_step, dstptr, dst_step, size ));
526 IPPI_CALL( func( src->data.ptr, src_step,
553 int src_step = 0, dst_step; local
598 src_step = src[i]->step;
611 src_step = dst_step = CV_STUB_STEP;
622 IPPI_CALL( func( srcptr, src_step, dst->data.ptr, dst_step, size ));
631 IPPI_CALL( func( src[nzidx]->data.ptr, src_step,
741 int* src_step = 0, *dst_step = 0; local
1068 int src_step, dst_step; local
1510 int src_step, dst_step; local
    [all...]
cxlogic.cpp 201 int src_step, dst_step, tdst_step, mask_step; local
303 src_step = src->step;
319 src_step = tdst_step = dst_step = mask_step = CV_STUB_STEP;
321 IPPI_CALL( fn_2d( src->data.ptr + y*src->step, src_step, tdst->data.ptr, tdst_step,
629 int src_step, dst_step; local
678 src_step = src->step;
684 src_step = dst_step = CV_STUB_STEP;
691 IPPI_CALL( icvNot_8u_C1R( src->data.ptr, src_step, dst->data.ptr, dst_step, size ));
cxcopy.cpp 425 int src_step = src->step, dst_step = dst->step; local
427 if( CV_IS_MAT_CONT( src->type & dst->type ) && (src_step == dst_step) && (src_step == src->width * pix_size))
439 src_step = dst_step = CV_STUB_STEP;
443 icvCopy_8u_C1R( src->data.ptr, src_step,
450 int src_step = src->step; local
468 src_step = dst_step = mask_step = CV_STUB_STEP;
474 IPPI_CALL( func( src->data.ptr, src_step, dst->data.ptr, dst_step,
    [all...]
cxdxt.cpp     [all...]
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...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_format.c 546 unsigned src_step; local
581 src_step = y_step / src_format_desc->block.height * src_stride;
618 src_row += src_step;
647 src_row += src_step;
672 src_row += src_step;
  /external/mesa3d/src/gallium/auxiliary/util/
u_format.c 546 unsigned src_step; local
581 src_step = y_step / src_format_desc->block.height * src_stride;
618 src_row += src_step;
647 src_row += src_step;
672 src_row += src_step;
  /external/chromium_org/third_party/libyuv/source/
rotate_argb.cc 51 int src_step, uint8* dst_ptr, int dst_width) = ScaleARGBRowDownEven_C;
  /external/libyuv/files/source/
rotate_argb.cc 40 int src_step, uint8* dst_ptr, int dst_width) = ScaleARGBRowDownEven_C;
scale_argb.cc 835 int src_step, uint8* dst_ptr, int dst_width) =
845 int src_step = src_width / dst_width; local
849 src_ptr += ((row_step >> 1) - 1) * src_stride + ((src_step >> 1) - 1) * 4;
851 ScaleARGBRowDownEven(src_ptr, src_stride, src_step, dst_ptr, dst_width);
    [all...]
  /external/opencv/ml/src/
ml_inner_functions.cpp     [all...]
  /external/opencv/cv/include/
cv.hpp 129 virtual int fill_cyclic_buffer( const uchar* src, int src_step,
357 int fill_cyclic_buffer( const uchar* src, int src_step,

Completed in 1268 milliseconds

1 2