vote up 0 vote down star

I am working with 1gb large tiff images of around 20000 x 20000 pixels. I need to extract several tiles (of about 300x300 pixels) out of the images, in random positions.

I tried the following solutions:

  • Libtiff (the only low level library I could find) offers TIFFReadline() but that means reading in around 19700 unnecesary pixels.

  • I implemented my own tiff reader which extracts a tile out of the image without reading in unnecesary pixels. I expected it to be faster, but doing a seekg for every line of the tile makes it very slow. I also tried reading to a buffer all the lines of the file that include my tile, and then extracting the tile from the buffer, but results are more or less the same.

I'd like to receive suggestions that would improve my tile extraction tool!

Everything is welcome, maybe you can propose a more efficient library I could use, some tips about C/C++ I/O, some higher level strategy for my needs, etc.

Regards, Juan

flag
Can we assume they are uncompressed? – John Ellinwood Oct 30 at 17:30
And that the data is organized in scanlines? – Don Wakefield Oct 30 at 17:44
yes, data is uncompressed and organized in the most traditinal way: line1 line2 line3 ... – Juan Nov 2 at 12:47
What does LibTiff report for TIFFGetField(tif, TIFFTAG_TILEWIDTH, &tileWidth) and TIFFGetField(tif, TIFFTAG_TILELENGTH, &tileLength)? – danio Nov 3 at 16:57
data is not organized in strips nor in tiles. The TIFFGetField with TIFFTAG_TILEWIDTH/TIFFTAG_TILELENGTH doesn't change the value of the variables I pass in. – Juan Nov 13 at 14:52

1 Answer

vote up 1 vote down

Just mmap your file.

http://www.kernel.org/doc/man-pages/online/pages/man2/mmap.2.html

link|flag
I'm currently testing this option. Thanks for your reply. – Juan Nov 13 at 14:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.