Home
last modified time | relevance | path

Searched refs:CV_MAT_ELEM_PTR (Results 1 – 2 of 2) sorted by relevance

/external/opencv/cvaux/include/
Dcvmat.hpp1320 { return _CvMATElem_( CV_MAT_ELEM_PTR( *this, row, 0 ), type ); }
1324 { return _CvMATConstElem_( CV_MAT_ELEM_PTR( *this, row, 0 ), type ); }
1328 { return _CvMATElem_( CV_MAT_ELEM_PTR( *this, row, col ), type ); }
1332 { return _CvMATConstElem_( CV_MAT_ELEM_PTR( *this, row, col ), type ); }
1336 { return _CvMATElemCn_( CV_MAT_ELEM_PTR( *this, row, col ), type, coi ); }
1340 { return _CvMATElemCn_( CV_MAT_ELEM_PTR( *this, pt.y, pt.x ), type, coi ); }
1344 { return get( CV_MAT_ELEM_PTR( *this, row, col ), type, coi ); }
1348 { return _CvMATElem_( CV_MAT_ELEM_PTR( *this, pt.y, pt.x ), type ); }
1352 { return _CvMATConstElem_( CV_MAT_ELEM_PTR( *this, pt.y, pt.x ), type ); }
1356 { return get( CV_MAT_ELEM_PTR( *this, pt.y, pt.x ), type, coi ); }
[all …]
/external/opencv/cxcore/include/
Dcxtypes.h644 #define CV_MAT_ELEM_PTR( mat, row, col ) \ macro