Closed fm3 closed 4 years ago
@jstriebel I implemented your feedback and tested with the large tif (had to introduce the dtype adapter for signed data). could you have another look?
Done and done :) I don’t think it makes that much sense to include a tiff dataset by default in the repo, as we don’t have a real-world dataset that we can use and I don’t think we should include too much stuff that users have to remove first when setting this up for real. What do you think?
requires tiled tifs with resolution pyramid, as produced by
vips tiffsave source.tif color.tif --tile --pyramid --bigtiff --compression none --tile-width 256 --tile-height 256
(make sure you have enough space at /tmp or change your TMPDIR env var) orconvert source.tif -define tiff:tile-geometry=256x256 'ptif:color.tif'
(note that imagemagick/convert fails for >4GB images, as it does not support resolution pyramid and bigtiff at the same time)In
data/datasets.json
, addand in
data/binary/sample_organization/my_tiff_dataset
, place the generatedcolor.tif
TODO: