Lines Matching refs:height
58 static BITMAPINFOHEADER icvBitmapHeader( int width, int height, int bpp, int compression = BI_RGB )
64 bmih.biHeight = height;
175 size.height = aviinfo.rcFrame.bottom - aviinfo.rcFrame.top;
176 BITMAPINFOHEADER bmihdr = icvBitmapHeader( size.width, size.height, 24 );
187 bmihdr = icvBitmapHeader( size.width, size.height, 8);
228 if( !frame || frame->width != src.width || frame->height != src.height )
255 return size.height;
335 int width, height;
350 width = height = -1;
490 const int prevHeight = frame ? frame->height : 0;
495 if( !frame || frame->width != vfmt0.biWidth || frame->height != vfmt0.biHeight )
578 height = cvRound(value);
600 height are set then change frame size.
601 if( width > 0 && height > 0 )
619 if( width != vfmt.biWidth || height != vfmt.biHeight )
623 vfmt.biHeight = height;
624 vfmt.biSizeImage = height * ((width * vfmt.biBitCount + 31) / 32) * 4;
636 heightSet = height;
639 width = height = -1;
729 if( frameSize.width > 0 && frameSize.height > 0 &&
749 bmih.bmiHeader = icvBitmapHeader( frameSize.width, frameSize.height, isColor ? 24 : 8 );
766 aviinfo.rcFrame.bottom = frameSize.height;
813 if( image->width != tempFrame->width || image->height != tempFrame->height )