• Home
  • Raw
  • Download

Lines Matching refs:coi

367     static double get( const uchar* ptr, int type, int coi = 0 );
368 static void set( uchar* ptr, int type, int coi, double d );
369 static void set( uchar* ptr, int type, int coi, int i );
514 _CvMATElemCn_ operator()( int row, int col, int coi );
515 double operator()( int row, int col, int coi ) const;
517 _CvMATElemCn_ operator()( CvPoint pt, int coi );
518 double operator()( CvPoint pt, int coi ) const;
569 double operator ()( int coi = 0 ) const;
579 explicit _CvMATElemCn_( uchar* ptr, int type, int coi );
598 _CvMATElemCn_ operator ()( int coi = 0 );
881 inline double _CvMATConstElem_::operator ()( int coi ) const
882 { return CvMAT::get( ptr, type, coi ); }
885 inline _CvMATElemCn_::_CvMATElemCn_( uchar* p, int t, int coi ) :
888 if( coi )
890 assert( (unsigned)coi < (unsigned)CV_MAT_CN(t) );
891 ptr += coi * CV_ELEM_SIZE(type);
956 inline _CvMATElemCn_ _CvMATElem_::operator ()( int coi )
957 { return _CvMATElemCn_( ptr, type, coi ); }
1335 inline _CvMATElemCn_ CvMAT::operator()( int row, int col, int coi )
1336 { return _CvMATElemCn_( CV_MAT_ELEM_PTR( *this, row, col ), type, coi ); }
1339 inline _CvMATElemCn_ CvMAT::operator()( CvPoint pt, int coi )
1340 { return _CvMATElemCn_( CV_MAT_ELEM_PTR( *this, pt.y, pt.x ), 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 ); }
1355 inline double CvMAT::operator()( CvPoint pt, int coi ) const
1356 { return get( CV_MAT_ELEM_PTR( *this, pt.y, pt.x ), type, coi ); }