Home
last modified time | relevance | path

Searched refs:CV_MAT_CONT_FLAG (Results 1 – 15 of 15) sorted by relevance

/external/opencv3/modules/core/include/opencv2/core/
Dcvdef.h163 #define CV_MAT_CONT_FLAG (1 << CV_MAT_CONT_FLAG_SHIFT) macro
164 #define CV_IS_MAT_CONT(flags) ((flags) & CV_MAT_CONT_FLAG)
Dmat.inl.hpp457 : flags(MAGIC_VAL | DataType<_Tp>::type | CV_MAT_CONT_FLAG), dims(2), rows((int)vec.size()), in Mat()
474 : flags(MAGIC_VAL | DataType<_Tp>::type | CV_MAT_CONT_FLAG), dims(2), rows(n), cols(1), data(0), in Mat()
490 : flags(MAGIC_VAL | DataType<_Tp>::type | CV_MAT_CONT_FLAG), dims(2), rows(m), cols(n), data(0), in Mat()
506 : flags(MAGIC_VAL | DataType<_Tp>::type | CV_MAT_CONT_FLAG), dims(2), rows(2), cols(1), data(0), in Mat()
525 : flags(MAGIC_VAL | DataType<_Tp>::type | CV_MAT_CONT_FLAG), dims(2), rows(3), cols(1), data(0), in Mat()
545 : flags(MAGIC_VAL | DataType<_Tp>::type | CV_MAT_CONT_FLAG), dims(0), rows(0), cols(0), data(0), in Mat()
3189 : flags(MAGIC_VAL | DataType<_Tp>::type | CV_MAT_CONT_FLAG), dims(2), rows((int)vec.size()), in UMat()
Dmat.hpp1856 …enum { MAGIC_VAL = 0x42FF0000, AUTO_STEP = 0, CONTINUOUS_FLAG = CV_MAT_CONT_FLAG, SUBMATRIX_FLAG …
2281 …enum { MAGIC_VAL = 0x42FF0000, AUTO_STEP = 0, CONTINUOUS_FLAG = CV_MAT_CONT_FLAG, SUBMATRIX_FLAG …
Dtypes_c.h515 m.type = CV_MAT_MAGIC_VAL | CV_MAT_CONT_FLAG | type; in cvMat()
/external/opencv/cxcore/src/
Dcxarray.cpp119 arr->type &= ~CV_MAT_CONT_FLAG; in icvCheckHuge()
146 (arr->step == 0 || arr->step == min_step ? CV_MAT_CONT_FLAG : 0); in cvCreateMatHeader()
208 (arr->step == min_step ? CV_MAT_CONT_FLAG : 0); in cvInitMatHeader()
314 mat->type = CV_MATND_MAGIC_VAL | (step <= INT_MAX ? CV_MAT_CONT_FLAG : 0) | type; in cvInitMatNDHeader()
1077 (mat->step==min_step ? CV_MAT_CONT_FLAG : 0); in cvSetData()
1499 submat->type = (mat->type & (rect.width < mat->cols ? ~CV_MAT_CONT_FLAG : -1)) | in cvGetSubRect()
1500 (submat->step == 0 ? CV_MAT_CONT_FLAG : 0); in cvGetSubRect()
1559 submat->type = (mat->type | (submat->step == 0 ? CV_MAT_CONT_FLAG : 0)) & in cvGetRows()
1560 (delta_row != 1 ? ~CV_MAT_CONT_FLAG : -1); in cvGetRows()
1609 submat->type = mat->type & (submat->step && submat->cols < cols ? ~CV_MAT_CONT_FLAG : -1); in cvGetCols()
[all …]
Dcxmatrix.cpp1499 if( (srcA->type & ~CV_MAT_CONT_FLAG) == (srcB->type & ~CV_MAT_CONT_FLAG) && in cvCrossProduct()
1500 (srcA->type & ~CV_MAT_CONT_FLAG) == (dst->type & ~CV_MAT_CONT_FLAG) ) in cvCrossProduct()
Dcxnorm.cpp981 int mat2_flag = CV_MAT_CONT_FLAG; in cvNorm()
Dcxmathfuncs.cpp337 int cont_flag = CV_MAT_CONT_FLAG; in cvCartToPolar()
Dcxconvert.cpp743 int cont_flag = CV_MAT_CONT_FLAG; in cvMixChannels()
Dcxarithm.cpp1668 int src1_cont_flag = CV_MAT_CONT_FLAG; in cvDiv()
Dcxmatmul.cpp694 C->type = CV_MAT_CONT_FLAG; in cvGEMM()
/external/opencv3/modules/core/src/
Darray.cpp109 arr->type &= ~CV_MAT_CONT_FLAG; in icvCheckHuge()
128 arr->type = CV_MAT_MAGIC_VAL | type | CV_MAT_CONT_FLAG; in cvCreateMatHeader()
177 (arr->rows == 1 || arr->step == min_step ? CV_MAT_CONT_FLAG : 0); in cvInitMatHeader()
260 mat->type = CV_MATND_MAGIC_VAL | (step <= INT_MAX ? CV_MAT_CONT_FLAG : 0) | type; in cvInitMatNDHeader()
922 (mat->rows == 1 || mat->step == min_step ? CV_MAT_CONT_FLAG : 0); in cvSetData()
1286 submat->type = (mat->type & (rect.width < mat->cols ? ~CV_MAT_CONT_FLAG : -1)) | in cvGetSubRect()
1287 (rect.height <= 1 ? CV_MAT_CONT_FLAG : 0); in cvGetSubRect()
1339 submat->type = (mat->type | (submat->rows == 1 ? CV_MAT_CONT_FLAG : 0)) & in cvGetRows()
1340 (delta_row != 1 && submat->rows > 1 ? ~CV_MAT_CONT_FLAG : -1); in cvGetRows()
1382 submat->type = mat->type & (submat->rows > 1 && submat->cols < cols ? ~CV_MAT_CONT_FLAG : -1); in cvGetCols()
[all …]
Dmatrix.cpp589 thiz.flags = Mat::MAGIC_VAL + (m->type & (CV_MAT_TYPE_MASK|CV_MAT_CONT_FLAG)); in cvMatToMat()
/external/opencv/cxcore/include/
Dcxtypes.h532 #define CV_MAT_CONT_FLAG (1 << CV_MAT_CONT_FLAG_SHIFT) macro
533 #define CV_IS_MAT_CONT(flags) ((flags) & CV_MAT_CONT_FLAG)
627 m.type = CV_MAT_MAGIC_VAL | CV_MAT_CONT_FLAG | type; in cvMat()
/external/opencv/cvaux/include/
Dcvmat.hpp1047 this->type = CV_MAT_MAGIC_VAL | (type & CV_MAT_TYPE_MASK) | CV_MAT_CONT_FLAG;