Even,
Thanks! I'm working on a change that will do:
nBlockXSize = std::min(nRasterXSize, 2048);
nBlockYSize = std::min(nRasterYSize, 128);
Getting a performance monitoring system setup is definitely on my todo
list, but sadly still down a ways.
On Thu, Jan 5, 2017 at 7:40 AM, Even Rouault
On jeudi 5 janvier 2017 07:18:45 CET Kurt Schwehr wrote:
> Frank, Even or anyone with experience with jp2k block sizes,
>
> Any chance you could comment on the change I proposed here?
>
> https://trac.osgeo.org/gdal/ticket/6764
>
> Is it reasonable to change this:
>
> if( nRasterXSize >= 20
Frank, Even or anyone with experience with jp2k block sizes,
Any chance you could comment on the change I proposed here?
https://trac.osgeo.org/gdal/ticket/6764
Is it reasonable to change this:
if( nRasterXSize >= 2048 )
nBlockXSize = 2048;
else
nBlockXSize = nRasterXSiz