mirror of
https://github.com/opencv/opencv.git
synced 2025-06-07 09:25:45 +08:00
buffer_size should be in bytes, not bits
This commit is contained in:
parent
d38fee7599
commit
7825cbeb7d
@ -226,7 +226,7 @@ bool TiffDecoder::readData( Mat& img )
|
|||||||
bpp = 8;
|
bpp = 8;
|
||||||
ncn = 4;
|
ncn = 4;
|
||||||
}
|
}
|
||||||
const size_t buffer_size = bpp * ncn * tile_height0 * tile_width0;
|
const size_t buffer_size = (bpp/bitsPerByte) * ncn * tile_height0 * tile_width0;
|
||||||
AutoBuffer<uchar> _buffer( buffer_size );
|
AutoBuffer<uchar> _buffer( buffer_size );
|
||||||
uchar* buffer = _buffer;
|
uchar* buffer = _buffer;
|
||||||
ushort* buffer16 = (ushort*)buffer;
|
ushort* buffer16 = (ushort*)buffer;
|
||||||
|
Loading…
Reference in New Issue
Block a user