As part of my GSoC project, I am working to add support for reading floating point Tiff images and I need some images to test the implementation.
I usually generate my own images for testing but there are lots of ambiguous points in the format specification and I don’t want to have my implementation based on a wrongly formatted image. I am also having a hard time finding an image online.
So if someone has an image (preferably not very big in size) that is a floating-point tiff image kindly send it to me. Also if there is an open-source software out there that can generate Tiff images with my choice of formatting that would be very useful as well.
A quick way to check if the image is a floating-point image is to run these lines in matlab (or using my current fork of Octave here):
a = Tiff ("/path/to/image.tif", "r");
getTag(a, Tiff.TagID.SampleFormat)
For floating-point images the tag should exist and have a value of 3.