<p dir="ltr">I've worked with jp2 for a while and have found that the specifics of each source was different and had different timings when reading. Overall I found the erdas ecw/j2k driver had the best read performance. The read only driver is available freely. </p>

<div class="gmail_quote">On Dec 19, 2013 2:50 AM, "Jo Meder" <<a href="mailto:jomeder@ihug.co.nz">jomeder@ihug.co.nz</a>> wrote:<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hi,<br>
<br>
Just to follow up, once I got GDAL built with OpenJPEG support on Windows I found the performance was terrible there as well. So I tried reading in blocks and that was obviously the way to do it. The way I was doing it was to read a scanline from each rasterband, perhaps 4 different bands for an RGBA image, and process all the pixels for a scanline at once. Now I read blocks from each rasterband in turn. It completes in a minute or so instead of taking 10 minutes without completing one scanline!<br>

<br>
It's interesting because it kind of makes having a codepath based on GDALRasterBand::RasterIO() redundant, for my purposes anyway. Originally I thought I would have two codepaths based on reading scanlines (especially considering I'd written it all before trying JPEG 2000!) and reading blocks which were switched between depending on block size. That ends up being a chunk of code though, and with the risk of major performance issues it seems better just to go with reading blocks. All RasterIO() seems to get you, on the surface at least, is the data type conversion. However I found GDALCopyWords() which seems to handle that.<br>

<br>
Thanks to whoever wrote the sample code in the ReadBlock() docs, very helpful as a start :-).<br>
<br>
Regards,<br>
<br>
Jo Meder<br>
_______________________________________________<br>
gdal-dev mailing list<br>
<a href="mailto:gdal-dev@lists.osgeo.org">gdal-dev@lists.osgeo.org</a><br>
<a href="http://lists.osgeo.org/mailman/listinfo/gdal-dev" target="_blank">http://lists.osgeo.org/mailman/listinfo/gdal-dev</a><br>
</blockquote></div>