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

  /external/opencv/cv/src/
cvfilter.cpp 344 int pix_size = CV_ELEM_SIZE(src_type); local
345 int width = prev_x_range.end_index - prev_x_range.start_index, width_n = width*pix_size;
442 int pix_size = CV_ELEM_SIZE(src_type);
538 sptr = src->data.ptr + src_y1*src->step + src_x*pix_size;
    [all...]
cvsamplers.cpp 58 int i, coi = 0, pix_size; local
73 pix_size = CV_ELEM_SIZE(mat->type);
76 CV_MEMCPY_AUTO( buffer, iterator.ptr, pix_size );
77 buffer += pix_size;
88 icvAdjustRect( const void* srcptr, int src_step, int pix_size,
97 src += ip.x*pix_size;
114 src += rect.width*pix_size;
141 return src - rect.x*pix_size;
    [all...]
cvutils.cpp 486 int pix_size, type; local
504 pix_size = CV_ELEM_SIZE(type);
518 offset.y, offset.x, pix_size );
524 offset.y, offset.x, pix_size );
532 offset.y, offset.x, pix_size, (uchar*)buf );
cvmorph.cpp 325 int pix_size = CV_ELEM_SIZE(src_type); local
326 int width_n = (prev_x_range.end_index - prev_x_range.start_index)*pix_size;
    [all...]
cvmoments.cpp 378 int type = 0, depth, cn, pix_size; local
430 pix_size = CV_ELEM_SIZE(type);
491 IPPI_CALL( func( mat->data.ptr + y*mat->step + x*pix_size,
  /external/opencv/cxcore/include/
cxcore.hpp 155 int pix_size() const { return image ? ((image->depth & 255)>>3)*image->nChannels : 0; } function in class:CvImage
323 int pix_size() const { return matrix ? CV_ELEM_SIZE(matrix->type) : 0; } function in class:CvMatrix
  /external/opencv/cxcore/src/
cxcopy.cpp 70 const void* scalar, int pix_size )
72 int copy_len = 12*pix_size;
295 int pix_size; local
343 pix_size = CV_ELEM_SIZE(iterator.hdr[0]->type);
347 iterator.size.width *= pix_size;
368 CvCopyMaskFunc func = icvGetCopyMaskFunc( pix_size );
421 pix_size = CV_ELEM_SIZE(src->type);
426 size.width *= pix_size;
427 if( CV_IS_MAT_CONT( src->type & dst->type ) && (src_step == dst_step) && (src_step == src->width * pix_size))
448 CvCopyMaskFunc func = icvGetCopyMaskFunc(pix_size);
494 int pix_size, type; local
915 int pix_size; local
998 int pix_size; local
    [all...]
cxsvd.cpp 1228 int a_buf_offset = 0, u_buf_offset = 0, buf_size, pix_size; local
1470 int buf_size = 0, pix_size; local
    [all...]
cxarray.cpp 173 int mask, pix_size, min_step; local
193 pix_size = CV_ELEM_SIZE(type);
194 min_step = arr->cols*pix_size & mask;
649 int pix_size = pix_size1*CV_MAT_CN(type); local
653 if( pix_size == 0 )
677 arr->idxoffset = (int)cvAlign(arr->valoffset + pix_size, sizeof(int));
1051 int pix_size, min_step; local
1061 pix_size = CV_ELEM_SIZE(type);
1062 min_step = mat->cols*pix_size & ((mat->rows <= 1) - 1);
1084 pix_size = ((img->depth & 255) >> 3)*img->nChannels
1632 int len, pix_size; local
1760 int pix_size = CV_ELEM_SIZE(type); local
1909 int pix_size = CV_ELEM_SIZE(type); local
1959 int pix_size = CV_ELEM_SIZE(type); local
2035 int pix_size = (img->depth & 255) >> 3; local
2212 int pix_size = CV_ELEM_SIZE(type); local
2348 int pix_size = CV_ELEM_SIZE(type); local
2506 int pix_size = CV_ELEM_SIZE(type); local
2622 int pix_size = CV_ELEM_SIZE(type); local
    [all...]
cxmatrix.cpp 58 int type, pix_size; local
74 pix_size = CV_ELEM_SIZE(type);
75 size.width *= pix_size;
88 step += pix_size;
117 for( k = 0; k < pix_size; k++ )
453 int type, pix_size; local
471 pix_size = CV_ELEM_SIZE(type);
500 CvFunc2D_1A func = (CvFunc2D_1A)(inp_tab.fn_2d[pix_size]);
521 dst->step = dst->height == 1 ? 0 : pix_size;
527 CvFunc2D_2A func = (CvFunc2D_2A)(tab.fn_2d[pix_size]);
    [all...]
cxdrawing.cpp 262 int pix_size = CV_ELEM_SIZE(mat->type); local
274 CV_MEMCPY_AUTO( iterator.ptr, color, pix_size );
571 int pix_size = CV_ELEM_SIZE( img->type ); local
582 ptr += img->step*2 + 2*pix_size;
632 if( pix_size == 3 )
674 else if( pix_size == 1 )
716 for( j = 0; j < pix_size; j++ ) \
719 tptr = ptr + ((pt2.x + (XY_ONE >> 1))>> XY_SHIFT)*pix_size +
725 ptr += (pt1.x >> XY_SHIFT) * pix_size;
732 ptr += pix_size;
1257 int pix_size = CV_ELEM_SIZE(img->type); local
1415 int pix_size = CV_ELEM_SIZE(img->type); local
    [all...]

Completed in 4457 milliseconds