OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CV_MAT_CONT_FLAG
(Results
1 - 9
of
9
) sorted by null
/external/opencv/cxcore/src/
cxarray.cpp
119
arr->type &= ~
CV_MAT_CONT_FLAG
;
146
(arr->step == 0 || arr->step == min_step ?
CV_MAT_CONT_FLAG
: 0);
208
(arr->step == min_step ?
CV_MAT_CONT_FLAG
: 0);
314
mat->type = CV_MATND_MAGIC_VAL | (step <= INT_MAX ?
CV_MAT_CONT_FLAG
: 0) | type;
1077
(mat->step==min_step ?
CV_MAT_CONT_FLAG
: 0);
[
all
...]
cxmatrix.cpp
[
all
...]
cxconvert.cpp
743
int cont_flag =
CV_MAT_CONT_FLAG
;
[
all
...]
cxmathfuncs.cpp
337
int cont_flag =
CV_MAT_CONT_FLAG
;
[
all
...]
cxnorm.cpp
[
all
...]
cxarithm.cpp
[
all
...]
cxmatmul.cpp
[
all
...]
/external/opencv/cxcore/include/
cxtypes.h
532
#define
CV_MAT_CONT_FLAG
(1 << CV_MAT_CONT_FLAG_SHIFT)
533
#define CV_IS_MAT_CONT(flags) ((flags) &
CV_MAT_CONT_FLAG
)
627
m.type = CV_MAT_MAGIC_VAL |
CV_MAT_CONT_FLAG
| type;
[
all
...]
/external/opencv/cvaux/include/
cvmat.hpp
1047
this->type = CV_MAT_MAGIC_VAL | (type & CV_MAT_TYPE_MASK) |
CV_MAT_CONT_FLAG
;
[
all
...]
Completed in 42 milliseconds