tlambert03 / nd2

Full-featured nd2 (Nikon NIS Elements) file reader for python. Outputs to numpy, dask, and xarray. Exhaustive metadata extraction
https://tlambert03.github.io/nd2
BSD 3-Clause "New" or "Revised" License
54 stars 15 forks source link

feat: add `read_using_sdk` parameter, default to True for compressed files #74

Closed tlambert03 closed 2 years ago

tlambert03 commented 2 years ago

fixes #72

This exposes the ability to use the sdk to read frames vs the current behavior of reading the chunkmap and using a numpy memmap. This may also help speed in reading metadata (#71)

The current default of None means: use the sdk reader if the file is compressed, otherwise use numpy memmap. This default might change in the future