I would like to add image data (a numpy matrix) to an already existing Multipage TIFF file using the tifffile module from Christoph Gohlke: http://www.lfd.uci.edu/~gohlke/code/tifffile.py.html
And I would like to do it without having to load the whole file because it can be a heavy one (long fluorescence microscopy experiments...). On this page: https://github.com/scienceopen/pyimagevideo/blob/master/Demo_image_write_multipage.py line 68 they say it is possible, but they just say "read the code", and I couldn't figure out how to append images doing so. I tried
tifffile.save(ImagePath, ImageData)
and
with tifffile.TiffWriter(ImagePath) as tif2write:
tif2write.save(ImageData)
but I doesn't append data, it overwrites the file.