Searched defs:min_step (Results 1 - 1 of 1) sorted by relevance

/external/opencv/cxcore/src/
H A Dcxarray.cpp132 int min_step; local
138 min_step = CV_ELEM_SIZE(type)*cols;
139 if( min_step <= 0 )
144 arr->step = rows == 1 ? 0 : cvAlign(min_step, CV_DEFAULT_MAT_ROW_ALIGN);
146 (arr->step == 0 || arr->step == min_step ? CV_MAT_CONT_FLAG : 0);
173 int mask, pix_size, min_step; local
194 min_step = arr->cols*pix_size & mask;
198 if( step < min_step )
204 arr->step = min_step;
208 (arr->step == min_step
1051 int pix_size, min_step; local
[all...]

Completed in 18 milliseconds