Home | History | Annotate | Download | only in opencv

Lines Matching refs:m_strm

172                     WLNonFileByteStream* m_strm) {

187 m_strm->Open(testSize);
192 m_strm->PutBytes( fmtSignBmp, (int)strlen(fmtSignBmp) );
195 m_strm->PutDWord( fileStep*height + headerSize ); // file size
196 m_strm->PutDWord( 0 );
197 m_strm->PutDWord( headerSize );
200 m_strm->PutDWord( bitmapHeaderSize );
201 m_strm->PutDWord( width );
202 m_strm->PutDWord( height );
203 m_strm->PutWord( 1 );
204 m_strm->PutWord( channels << 3 );
205 m_strm->PutDWord( BMP_RGB );
206 m_strm->PutDWord( 0 );
207 m_strm->PutDWord( 0 );
208 m_strm->PutDWord( 0 );
209 m_strm->PutDWord( 0 );
210 m_strm->PutDWord( 0 );
215 m_strm->PutBytes( palette, sizeof(palette));
222 m_strm->PutBytes( data, width );
224 m_strm->PutBytes( zeropad, fileStep - width );