HomeSort by relevance Sort by last modified time
    Searched refs:CV_ELEM_SIZE (Results 1 - 25 of 45) sorted by null

1 2

  /external/opencv/cvaux/src/
cvvideo.cpp 69 size.width *= CV_ELEM_SIZE( even->type );
  /external/opencv/ml/src/
_ml.h 81 (vstep) = CV_ELEM_SIZE( (mat).type ); \
96 (cstep) = CV_ELEM_SIZE( (mat).type ); \
103 (sstep) = CV_ELEM_SIZE( (mat).type ); \
ml_inner_functions.cpp 386 step = matrix->step / CV_ELEM_SIZE(matrix->type);
483 step = CV_IS_MAT_CONT(idx_arr->type) ? 1 : idx_arr->step/CV_ELEM_SIZE(type);
592 tm_step = var_type->step ? var_type->step/CV_ELEM_SIZE(var_type->type) : 1;
657 r_step = responses->step ? responses->step / CV_ELEM_SIZE(responses->type) : 1;
747 r_step = responses->step ? responses->step / CV_ELEM_SIZE(responses->type) : 1;
    [all...]
mlestimate.cpp 467 1 : sampleIdx->step / CV_ELEM_SIZE(sampleIdx->type);
  /external/opencv/cxcore/src/
cxlogic.cpp 233 iterator.size.width *= CV_ELEM_SIZE(type);
260 elem_size = CV_ELEM_SIZE(type);
398 iterator.size.width *= CV_ELEM_SIZE(type);
428 elem_size = CV_ELEM_SIZE(type);
656 iterator.size.width *= CV_ELEM_SIZE(type);
689 size.width *= CV_ELEM_SIZE(type);
cxarray.cpp 138 min_step = CV_ELEM_SIZE(type)*cols;
193 pix_size = CV_ELEM_SIZE(type);
288 int64 step = CV_ELEM_SIZE(type);
459 matnd->dim[1].step = CV_ELEM_SIZE(mat->type);
570 step = CV_ELEM_SIZE(hdr->type);
876 CV_ZERO_CHAR( ptr, CV_ELEM_SIZE(mat->type));
968 step = CV_ELEM_SIZE(mat->type)*mat->cols;
1008 size_t total_size = CV_ELEM_SIZE(mat->type);
1061 pix_size = CV_ELEM_SIZE(type);
1122 cur_step = CV_ELEM_SIZE(mat->type)
    [all...]
cxcopy.cpp 343 pix_size = CV_ELEM_SIZE(iterator.hdr[0]->type);
421 pix_size = CV_ELEM_SIZE(src->type);
559 pix_size = CV_ELEM_SIZE(type);
690 iterator.size.width *= CV_ELEM_SIZE(iterator.hdr[0]->type);
728 size.width *= CV_ELEM_SIZE(mat->type);
948 pix_size = CV_ELEM_SIZE( src->type );
    [all...]
cximage.cpp 221 cvMemStorageAlloc( storage, rows*cols*CV_ELEM_SIZE(type) ) : 0 );
cxmatmul.cpp     [all...]
cxmatrix.cpp 74 pix_size = CV_ELEM_SIZE(type);
471 pix_size = CV_ELEM_SIZE(type);
    [all...]
cxdrawing.cpp 190 bt_pix0 = bt_pix = CV_ELEM_SIZE(mat->type);
262 int pix_size = CV_ELEM_SIZE(mat->type);
571 int pix_size = CV_ELEM_SIZE( img->type );
    [all...]
cxutils.cpp 838 elem_size = CV_ELEM_SIZE(mat->type);
935 step = mat->step / CV_ELEM_SIZE(type);
1063 int type = CV_MAT_TYPE(src->type), elemSize = CV_ELEM_SIZE(type);
    [all...]
cxpersistence.cpp     [all...]
  /external/opencv/cv/src/
cvlinefit.cpp 663 CV_ELEM_SIZE(type) != ptseq->elem_size )
681 CV_SEQ_KIND_GENERIC|type, sizeof(CvContour), CV_ELEM_SIZE(type), mat->data.ptr,
695 CV_CALL( buffer = points = (schar*)cvAlloc( ptseq->total*CV_ELEM_SIZE(type) ));
cvfilter.cpp 108 trow_sz = cvAlign( (max_width + ksize.width - 1)*CV_ELEM_SIZE(src_type), ALIGN );
115 row_sz = cvAlign( width*CV_ELEM_SIZE(work_type), ALIGN );
173 src_pix_sz = CV_ELEM_SIZE(src_type);
202 int pix_sz = CV_ELEM_SIZE(src_type), work_pix_sz = CV_ELEM_SIZE(work_type);
344 int pix_size = CV_ELEM_SIZE(src_type);
442 int pix_size = CV_ELEM_SIZE(src_type);
537 dptr = dst->data.ptr + dst_origin.y*dst->step + dst_origin.x*CV_ELEM_SIZE(dst_type);
    [all...]
cvutils.cpp 74 sizeof(CvContour), CV_ELEM_SIZE(eltype), mat->data.ptr,
504 pix_size = CV_ELEM_SIZE(type);
cvtemplmatch.cpp 140 buf_size = templ->cols*templ->rows*CV_ELEM_SIZE(templ_depth);
144 (blocksize.height + templ->rows - 1)*CV_ELEM_SIZE(depth));
147 buf_size = MAX( buf_size, blocksize.width*blocksize.height*CV_ELEM_SIZE(corr_depth));
cvfundam.cpp 358 int type = CV_MAT_TYPE(m1->type), elemSize = CV_ELEM_SIZE(type);
    [all...]
cvrotcalipers.cpp 405 sizeof(CvContour), CV_ELEM_SIZE(ptseq->v_prev->flags),
cvconvhull.cpp 310 sizeof(contour_header), CV_ELEM_SIZE(mat->type), mat->data.ptr,
588 sizeof(CvContour), CV_ELEM_SIZE(mat->type), mat->data.ptr,
cvcorner.cpp 279 el_anchor.x*CV_ELEM_SIZE(depth);
582 el_anchor.x*CV_ELEM_SIZE(depth);
cvundistort.cpp 430 sstep = _src->rows == 1 ? 1 : _src->step/CV_ELEM_SIZE(stype);
431 dstep = _dst->rows == 1 ? 1 : _dst->step/CV_ELEM_SIZE(dtype);
  /external/opencv/cvaux/include/
cvmat.hpp 891 ptr += coi * CV_ELEM_SIZE(type);
903 memcpy( ptr, elem.ptr, CV_ELEM_SIZE(type) );
917 memcpy( ptr, elem.ptr, CV_ELEM_SIZE(type) );
963 memcpy( ptr, elem.ptr, CV_ELEM_SIZE(type) );
985 memcpy( ptr, elem.ptr, CV_ELEM_SIZE(type) );
1043 int step = cols*CV_ELEM_SIZE(type), total_size = step*rows;
    [all...]
  /external/opencv/cxcore/include/
cxtypes.h 614 #define CV_ELEM_SIZE(type) \
630 m.step = rows > 1 ? m.cols*CV_ELEM_SIZE(type) : 0;
645 CV_MAT_ELEM_PTR_FAST( mat, row, col, CV_ELEM_SIZE((mat).type) )
    [all...]
cxcore.hpp 323 int pix_size() const { return matrix ? CV_ELEM_SIZE(matrix->type) : 0; }

Completed in 360 milliseconds

1 2