Home | History | Annotate | Download | only in include

Lines Matching refs:col1

533     CvMAT colrange( int col1, int col2 ) const;
638 CvMAT colrange( int col1, int col2 ) const;
1444 inline CvMAT CvMAT::colrange( int col1, int col2 ) const
1446 assert( 0 <= col1 && col1 < col2 && col2 <= width );
1447 return CvMAT( *this, cvRect( col1, 0, col2 - col1, height ));
2092 inline CvMAT _CvMAT_BASE_OP_::colrange( int col1, int col2 ) const
2095 assert( 0 <= col1 && col1 < col2 && col2 <= m.width );
2096 return CvMAT( m, cvRect( col1, 0, col2 - col1, m.height ));