DylanMuir / TIFFStack

Load TIFF files into matlab fast, with lazy loading
http://dylan-muir.com/articles/tiffstack/
Other
36 stars 20 forks source link

fix bug: wrong apparent size with lazy deinterleaving #17

Closed jennan closed 7 years ago

jennan commented 7 years ago

There was a bug with size of a lazily deinterleaved stack:

stack = TIFFStack('my_stack.tif', [], [4, 1]);  % using a [512, 512, 900] stack
size(stack);  % gives [512, 512, 4, 1] instead of [512, 512, 4, 1, 225]
DylanMuir commented 7 years ago

Thanks Maxime. Annoying that the unit tests didn't pick that up already :(