You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ND2 is a format from Nikon and is supported through the nd2reader package. ND2 is often used for fluorescence light microscopy (maybe multiple layers).
Sample code:
from nd2reader import ND2Reader
a = ND2Reader(input_path)
size = a.metadata['pixel_microns'] * 1000
a = np.stack(a).T
print(a.shape, a.dtype)
The text was updated successfully, but these errors were encountered:
ND2 is a format from Nikon and is supported through the
nd2reader
package. ND2 is often used for fluorescence light microscopy (maybe multiple layers).Sample code:
The text was updated successfully, but these errors were encountered: