HomeSort by relevance Sort by last modified time
    Searched defs:src_step (Results 1 - 15 of 15) sorted by null

  /external/opencv/cv/src/
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,
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...]
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...]
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...]
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,
cvcolor.cpp 2243 int src_step, dst_step; local
    [all...]
  /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/opencv/cxcore/src/
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...]
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...]
cxcmp.cpp 1502 int src_step, dst_step; local
    [all...]
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...]
  /external/libyuv/files/source/
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/otherlibs/highgui/
grfmt_jpeg.cpp 1796 int src_step = x_scale * 8; local
    [all...]

Completed in 420 milliseconds