Merge pull request #6421 from alalek:backport_6417

This commit is contained in:
Alexander Alekhin 2016-04-18 15:12:16 +00:00
commit de164b0ccf

View File

@ -502,7 +502,7 @@ bool Jpeg2KEncoder::writeComponent16u( void *__img, const Mat& _img )
for( int y = 0; y < h; y++ )
{
uchar* data = _img.data + _img.step*y;
const ushort* data = _img.ptr<ushort>(y);
for( int i = 0; i < ncmpts; i++ )
{
for( int x = 0; x < w; x++)