Home | History | Annotate | Download | only in highgui

Lines Matching refs:rowsPerStrip

691         int rowsPerStrip = (1 << 13)/fileStep;
693 if( rowsPerStrip < 1 )
694 rowsPerStrip = 1;
696 if( rowsPerStrip > height )
697 rowsPerStrip = height;
699 int i, stripCount = (height + rowsPerStrip - 1) / rowsPerStrip;
701 int uncompressedRowSize = rowsPerStrip * fileStep;
720 int limit = y + rowsPerStrip;
798 WriteTag( TIFF_TAG_ROWS_PER_STRIP, TIFF_TYPE_LONG, 1, rowsPerStrip );