Lines Matching refs:row
386 k == 0 - i-th row
505 _CvMATElem_ operator ()( int row );
506 _CvMATConstElem_ operator ()( int row ) const;
508 _CvMATElem_ operator ()( int row, int col );
509 _CvMATConstElem_ operator ()( int row, int col ) const;
514 _CvMATElemCn_ operator()( int row, int col, int coi );
515 double operator()( int row, int col, int coi ) const;
520 void* ptr( int row );
521 const void* ptr( int row ) const;
523 void* ptr( int row, int col );
524 const void* ptr( int row, int col ) const;
530 CvMAT row( int row ) const;
635 CvMAT row( int row ) const;
1319 row )
1320 { return _CvMATElem_( CV_MAT_ELEM_PTR( *this, row, 0 ), type ); }
1323 inline _CvMATConstElem_ CvMAT::operator ()( int row ) const
1324 { return _CvMATConstElem_( CV_MAT_ELEM_PTR( *this, row, 0 ), type ); }
1327 inline _CvMATElem_ CvMAT::operator ()( int row, int col )
1328 { return _CvMATElem_( CV_MAT_ELEM_PTR( *this, row, col ), type ); }
1331 inline _CvMATConstElem_ CvMAT::operator ()( int row, int col ) const
1332 { return _CvMATConstElem_( CV_MAT_ELEM_PTR( *this, row, col ), type ); }
1335 inline _CvMATElemCn_ CvMAT::operator()( int row, int col, int coi )
1336 { return _CvMATElemCn_( CV_MAT_ELEM_PTR( *this, row, col ), type, coi ); }
1343 inline double CvMAT::operator()( int row, int col, int coi ) const
1344 { return get( CV_MAT_ELEM_PTR( *this, row, col ), type, coi ); }
1359 inline void* CvMAT::ptr( int row )
1360 { return CV_MAT_ELEM_PTR( *this, row, 0 ); }
1363 inline const void* CvMAT::ptr( int row ) const
1364 { return (const void*)CV_MAT_ELEM_PTR( *this, row, 0 ); }
1367 inline void* CvMAT::ptr( int row, int col )
1368 { return CV_MAT_ELEM_PTR( *this, row, col ); }
1371 inline const void* CvMAT::ptr( int row, int col ) const
1372 { return (const void*)CV_MAT_ELEM_PTR( *this, row, col ); }
1407 k == 0 - i-th row
1423 inline CvMAT CvMAT::row( int r ) const
2079 inline CvMAT _CvMAT_BASE_OP_::row( int r ) const