Home | History | Annotate | Download | only in highgui

Lines Matching refs:m_width

150             m_width = width;
172 if( m_tif && m_width && m_height )
175 int tile_width0 = m_width, tile_height0 = 0;
186 tile_width0 = m_width;
200 for( x = 0; x < m_width; x += tile_width0 )
204 if( x + tile_width > m_width )
205 tile_width = m_width - x;
369 m_width = -1;
411 m_width = value;
501 if( m_width > 0 && m_height > 0 && m_strips > 0 &&
551 m_width = m_height = -1;
566 int src_pitch = (m_width*m_bpp + 7)/8;
601 FillColorRow1( data, src, m_width, m_palette );
604 FillColorRow4( data, src, m_width, m_palette );
607 FillColorRow8( data, src, m_width, m_palette );
610 icvCvt_RGB2BGR_8u_C3R( src, 0, data, 0, cvSize(m_width,1) );
613 icvCvt_BGRA2BGR_8u_C4C3R( src, 0, data, 0, cvSize(m_width,1), 2 );
623 FillGrayRow1( data, src, m_width, gray_palette );
626 FillGrayRow4( data, src, m_width, gray_palette );
629 FillGrayRow8( data, src, m_width, gray_palette );
632 icvCvt_BGR2Gray_8u_C3C1R( src, 0, data, 0, cvSize(m_width,1), 2 );
635 icvCvt_BGRA2Gray_8u_C4C1R( src, 0, data, 0, cvSize(m_width,1), 2 );