We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Apparently, tifffile will use the SubIFD tag to accelerate sparse operations on images in tiff files. See this gist.
tifffile
We can:
SubIFD
We'll want to confirm:
The text was updated successfully, but these errors were encountered:
writing a file with tifffile:
im=rand(512,512) with tifffile.TiffWriter('out.tif',bigtiff=True) as tif: for i in range(10): tif.write(im,contiguous=True)
and inspecting the contents shows the image description tag as:
{"shape":[10,512,512]}
software tag is set to tifffile.py
tifffile.py
No sign of subifds ...
Sorry, something went wrong.
No branches or pull requests
Apparently,
tifffile
will use the SubIFD tag to accelerate sparse operations on images in tiff files. See this gist.We can:
SubIFD
tag to the first IFD.We'll want to confirm:
The text was updated successfully, but these errors were encountered: