nd2
¶
nd2: A Python library for reading and writing ND2 files.
Modules:
-
index
–Index ND2 files and print the results as a table.
-
structures
–Dataclasses and other structures used for metadata.
-
tiff
–Functions for converting .nd2 to .tiff files.
Classes:
-
BinaryLayer
–Wrapper for data from a single binary layer in an
nd2.ND2File
. -
BinaryLayers
–Sequence of Binary Layers found in an ND2 file.
-
ND2File
–Main objecting for opening and extracting data from an nd2 file.
Functions:
-
imread
–Open
file
, return requested array type, and closefile
. -
is_legacy
–Return
True
ifpath
is a legacy ND2 file. -
is_supported_file
–Return
True
ifpath
can be opened as an nd2 file. -
nd2_to_tiff
–Export an ND2 file to an (OME)-TIFF file.
-
rescue_nd2
–Iterator that yields all discovered frames in a file handle.
BinaryLayer
dataclass
¶
BinaryLayer(data: list[ndarray | None], name: str, file_tag: str, comp_name: str | None, comp_order: int | None, color: int | None, color_mode: int | None, state: int | None, layer_id: int | None, coordinate_shape: tuple[int, ...])
Wrapper for data from a single binary layer in an nd2.ND2File
.
A "layer" is a set of binary data that can be associated with a specific component in an ND2 file, such as a single channel.
This object behaves like a list[numpy.ndarray] | None
.
It will have a length matching the number of frames in the file, with None
for
any frames that lack binary data.
Attributes:
-
data
(list[ndarray] | None
) –The data for each frame. If a frame has no binary data, the value will be None. Data will have the same length as the number of sequences in the file.
-
name
(str
) –The name of the binary layer.
-
comp_name
(str
) –The name of the associated component, if Any.
-
comp_order
(int
) –The order of the associated component, if Any.
-
color
(int
) –The color of the binary layer.
-
color_mode
(int
) –The color mode of the binary layer. I believe this is related to how colors are chosen in NIS-Elements software. Where "0" is direct color (i.e. use, the color value), "8" is color by 3D ... and I'm not sure about the rest :)
-
state
(int
) –The state of the binary layer. (meaning still unclear)
-
file_tag
(str
) –The key for the binary layer in the CustomData metadata, e.g.
RleZipBinarySequence_1_v1
-
layer_id
(int
) –The ID of the binary layer.
-
coordinate_shape
(tuple[int, ...]
) –The shape of the coordinates for the associated nd2 file. This is used to reshape the data into a 3D array in
asarray
.
Methods:
-
asarray
–Stack all the frames into a single array.
Attributes:
-
frame_shape
(tuple[int, ...]
) –Shape (Y, X) of each mask in
data
.
asarray
¶
asarray() -> ndarray | None
Stack all the frames into a single array.
If there are no frames, returns None.
Source code in nd2/_binary.py
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 |
|
BinaryLayers
¶
BinaryLayers(data: list[BinaryLayer])
Sequence of Binary Layers found in an ND2 file.
This is the output type of ND2File.binary_data
.
This object is a sequence of BinaryLayer
objects, one for each binary layer in the
file. Each layer has a name
attribute, and a data
attribute that is list of
numpy arrays - one for each frame in the experiment - or None if the layer was not
present in that frame.
The wrapper can be cast to a numpy array (with BinaryLayers.asarray()
or
np.asarray(BinaryLayers)
) to stack all the layers into a single array. The output
array will have shape (n_layers, *coord_shape, *frame_shape)
.
Methods:
-
asarray
–Stack all the layers/frames into a single array.
Source code in nd2/_binary.py
133 134 |
|
asarray
¶
asarray() -> ndarray
Stack all the layers/frames into a single array.
The output array will have shape (n_layers, coord_shape, frame_shape).
Source code in nd2/_binary.py
158 159 160 161 162 163 164 165 166 167 168 |
|
ND2File
¶
ND2File(path: FileOrBinaryIO, *, validate_frames: bool = False, search_window: int = 100)
Main objecting for opening and extracting data from an nd2 file.
with nd2.ND2File("path/to/file.nd2") as nd2_file:
...
The key metadata outputs are:
Some files may also have:
Tip
For a simple way to read nd2 file data into an array, see nd2.imread.
Parameters:
-
path
¶Path | str
) –Filename of an nd2 file.
-
validate_frames
¶bool
, default:False
) –Whether to verify (and attempt to fix) frames whose positions have been shifted relative to the predicted offset (i.e. in a corrupted file). This comes at a slight performance penalty at file open, but may "rescue" some corrupt files. by default False.
-
search_window
¶int
, default:100
) –When validate_frames is true, this is the search window (in KB) that will be used to try to find the actual chunk position. by default 100 KB
Methods:
-
asarray
–Read image into a numpy.ndarray.
-
close
–Close file.
-
events
–Return tabular data recorded for each frame and/or event of the experiment.
-
frame_metadata
–Metadata for specific frame.
-
is_supported_file
–Return
True
if the file is supported by this reader. -
ome_metadata
–Return
ome_types.OME
metadata object for this file. -
open
–Open file for reading.
-
read_frame
–Read a single frame from the file, indexed by frame number.
-
to_dask
–Create dask array (delayed reader) representing image.
-
to_xarray
–Return a labeled xarray.DataArray representing image.
-
unstructured_metadata
–Exposes, and attempts to decode, each metadata chunk in the file.
-
voxel_size
–XYZ voxel size in microns.
-
write_tiff
–Export to an (OME)-TIFF file.
Attributes:
-
attributes
(Attributes
) –Core image attributes.
-
binary_data
(BinaryLayers | None
) –Return binary layers embedded in the file.
-
closed
(bool
) –Return
True
if the file is closed. -
components_per_channel
(int
) –Number of components per channel (e.g. 3 for rgb).
-
custom_data
(dict[str, Any]
) –Dict of various unstructured custom metadata.
-
dtype
(dtype
) –Image data type.
-
experiment
(list[ExpLoop]
) –Loop information for each axis of an nD acquisition.
-
is_legacy
(bool
) –Whether file is a legacy nd2 (JPEG2000) file.
-
is_rgb
(bool
) –Whether the image is rgb (i.e. it has 3 or 4 components per channel).
-
loop_indices
(tuple[dict[str, int], ...]
) –Return a tuple of dicts of loop indices for each frame.
-
metadata
(Metadata
) –Various metadata (will be
dict
only if legacy format). -
nbytes
(int
) –Total bytes of image data.
-
ndim
(int
) –Number of dimensions (i.e.
len(
self.shape
)
). -
path
(str
) –Path of the image.
-
rois
(dict[int, ROI]
) –Return dict of
{id: ROI}
for all ROIs found in the metadata. -
shape
(tuple[int, ...]
) –Size of each axis.
-
size
(int
) –Total number of voxels in the volume (the product of the shape).
-
sizes
(Mapping[str, int]
) –Names and sizes for each axis.
-
text_info
(TextInfo
) –Miscellaneous text info.
-
version
(tuple[int, ...]
) –Return the file format version as a tuple of ints.
Source code in nd2/_nd2file.py
94 95 96 97 98 99 100 101 102 103 104 105 106 |
|
attributes
cached
property
¶
attributes: Attributes
Core image attributes.
Example Output
Attributes(
bitsPerComponentInMemory=16,
bitsPerComponentSignificant=16,
componentCount=2,
heightPx=32,
pixelDataType="unsigned",
sequenceCount=60,
widthBytes=128,
widthPx=32,
compressionLevel=None,
compressionType=None,
tileHeightPx=None,
tileWidthPx=None,
channelCount=2,
)
Returns:
-
attrs
(Attributes
) –Core image attributes
binary_data
cached
property
¶
binary_data: BinaryLayers | None
Return binary layers embedded in the file.
new in version 0.5.1
The returned BinaryLayers
object is an immutable sequence
of BinaryLayer
objects, one for each binary layer in the
file (there will usually be a binary layer associated with each channel in the
dataset).
Each BinaryLayer
object in the sequence has a name
attribute, and a data
attribute which is list of numpy arrays (or None
if there was no binary mask
for that frame). The length of the list will be the same as the number of
sequence frames in this file (i.e. self.attributes.sequenceCount
).
BinaryLayers
can be indexed directly with an integer corresponding to the
frame index.
Both the BinaryLayers
and individual BinaryLayer
objects can be cast to a
numpy array with np.asarray()
, or by using the .asarray()
method
Returns:
-
BinaryLayers | None
–The binary layers embedded in the file, or None if there are no binary layers.
Examples:
>>> f = ND2File("path/to/file.nd2")
>>> f.binary_data
<BinaryLayers with 4 layers>
>>> first_layer = f.binary_data[0] # the first binary layer
>>> first_layer
BinaryLayer(name='attached Widefield green (green color)',
comp_name='Widefield Green', comp_order=2, color=65280, color_mode=0,
state=524288, file_tag='RleZipBinarySequence_1_v1', layer_id=2)
>>> first_layer.data # list of arrays
# you can also index in to the BinaryLayers object itself
>>> first_layer[0] # get binary data for first frame (or None if missing)
>>> np.asarray(first_layer) # cast to array matching shape of full sequence
>>> np.asarray(f.binary_data).shape # cast all layers to array
(4, 3, 4, 5, 32, 32)
components_per_channel
property
¶
components_per_channel: int
Number of components per channel (e.g. 3 for rgb).
custom_data
cached
property
¶
Dict of various unstructured custom metadata.
experiment
cached
property
¶
Loop information for each axis of an nD acquisition.
Example Output
[
TimeLoop(
count=3,
nestingLevel=0,
parameters=TimeLoopParams(
startMs=0.0,
periodMs=1.0,
durationMs=0.0,
periodDiff=PeriodDiff(
avg=3674.199951171875,
max=3701.219970703125,
min=3647.179931640625,
),
),
type="TimeLoop",
),
ZStackLoop(
count=5,
nestingLevel=1,
parameters=ZStackLoopParams(
homeIndex=2,
stepUm=1.0,
bottomToTop=True,
deviceName="Ti2 ZDrive",
),
type="ZStackLoop",
),
]
Returns:
is_rgb
property
¶
is_rgb: bool
Whether the image is rgb (i.e. it has 3 or 4 components per channel).
loop_indices
cached
property
¶
Return a tuple of dicts of loop indices for each frame.
new in version 0.8.0
Examples:
>>> with nd2.ND2File("path/to/file.nd2") as f:
... f.loop_indices
(
{'Z': 0, 'T': 0, 'C': 0},
{'Z': 0, 'T': 0, 'C': 1},
{'Z': 0, 'T': 0, 'C': 2},
...
)
metadata
cached
property
¶
metadata: Metadata
Various metadata (will be dict
only if legacy format).
Example output
Metadata(
contents=Contents(channelCount=2, frameCount=15),
channels=[
Channel(
channel=ChannelMeta(
name="Widefield Green",
index=0,
color=Color(r=91, g=255, b=0, a=1.0),
emissionLambdaNm=535.0,
excitationLambdaNm=None,
),
loops=LoopIndices(
NETimeLoop=None, TimeLoop=0, XYPosLoop=None, ZStackLoop=1
),
microscope=Microscope(
objectiveMagnification=10.0,
objectiveName="Plan Fluor 10x Ph1 DLL",
objectiveNumericalAperture=0.3,
zoomMagnification=1.0,
immersionRefractiveIndex=1.0,
projectiveMagnification=None,
pinholeDiameterUm=None,
modalityFlags=["fluorescence"],
),
volume=Volume(
axesCalibrated=[True, True, True],
axesCalibration=[0.652452890023035, 0.652452890023035, 1.0],
axesInterpretation=["distance", "distance", "distance"],
bitsPerComponentInMemory=16,
bitsPerComponentSignificant=16,
cameraTransformationMatrix=[
-0.9998932296054086,
-0.014612644841559427,
0.014612644841559427,
-0.9998932296054086,
],
componentCount=1,
componentDataType="unsigned",
voxelCount=[32, 32, 5],
componentMaxima=[0.0],
componentMinima=[0.0],
pixelToStageTransformationMatrix=None,
),
),
Channel(
channel=ChannelMeta(
name="Widefield Red",
index=1,
color=Color(r=255, g=85, b=0, a=1.0),
emissionLambdaNm=620.0,
excitationLambdaNm=None,
),
loops=LoopIndices(
NETimeLoop=None, TimeLoop=0, XYPosLoop=None, ZStackLoop=1
),
microscope=Microscope(
objectiveMagnification=10.0,
objectiveName="Plan Fluor 10x Ph1 DLL",
objectiveNumericalAperture=0.3,
zoomMagnification=1.0,
immersionRefractiveIndex=1.0,
projectiveMagnification=None,
pinholeDiameterUm=None,
modalityFlags=["fluorescence"],
),
volume=Volume(
axesCalibrated=[True, True, True],
axesCalibration=[0.652452890023035, 0.652452890023035, 1.0],
axesInterpretation=["distance", "distance", "distance"],
bitsPerComponentInMemory=16,
bitsPerComponentSignificant=16,
cameraTransformationMatrix=[
-0.9998932296054086,
-0.014612644841559427,
0.014612644841559427,
-0.9998932296054086,
],
componentCount=1,
componentDataType="unsigned",
voxelCount=[32, 32, 5],
componentMaxima=[0.0],
componentMinima=[0.0],
pixelToStageTransformationMatrix=None,
),
),
],
)
Returns:
rois
cached
property
¶
shape
cached
property
¶
Size of each axis.
Examples:
>>> ndfile.shape
(3, 5, 2, 512, 512)
sizes
cached
property
¶
Names and sizes for each axis.
This is an ordered dict, with the same order as the corresponding shape
Examples:
>>> ndfile.sizes
{'T': 3, 'Z': 5, 'C': 2, 'Y': 512, 'X': 512}
>>> ndfile.shape
(3, 5, 2, 512, 512)
text_info
cached
property
¶
text_info: TextInfo
Miscellaneous text info.
Example Output
{
'description': 'Metadata:\r\nDimensions: T(3) x XY(4) x λ(2) x Z(5)...'
'capturing': 'Flash4.0, SN:101412\r\nSample 1:\r\n Exposure: 100 ms...'
'date': '9/28/2021 9:41:27 AM',
'optics': 'Plan Fluor 10x Ph1 DLL'
}
Returns:
version
cached
property
¶
Return the file format version as a tuple of ints.
new in version 0.6.1
Likely values are:
(1, 0)
= a legacy nd2 file (JPEG2000)(2, 0)
,(2, 1)
= non-JPEG2000 nd2 with xml metadata(3, 0)
= new format nd2 file with lite variant metadata(-1, -1)
=
Returns:
Raises:
-
ValueError
–If the file is not a valid nd2 file.
asarray
¶
Read image into a numpy.ndarray.
For a simple way to read a file into a numpy array, see nd2.imread.
Parameters:
Returns:
-
array
(ndarray
) –
Raises:
-
ValueError
–if
position
is a string and is not a valid position name -
IndexError
–if
position
is provided and is out of range
Source code in nd2/_nd2file.py
792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 |
|
close
¶
close() -> None
Close file.
Note
Files are best opened using a context manager:
with nd2.ND2File("path/to/file.nd2") as nd2_file:
...
This will automatically close the file when the context exits.
Source code in nd2/_nd2file.py
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 |
|
events
¶
events(*, orient: Literal['records'] = ..., null_value: Any = ...) -> ListOfDicts
events(*, orient: Literal['list'], null_value: Any = ...) -> DictOfLists
events(*, orient: Literal['dict'], null_value: Any = ...) -> DictOfDicts
events(*, orient: Literal['records', 'list', 'dict'] = 'records', null_value: Any = float('nan')) -> ListOfDicts | DictOfLists | DictOfDicts
Return tabular data recorded for each frame and/or event of the experiment.
new in version 0.6.1
This method returns tabular data in the format specified by the orient
argument:
- 'records' : list of dict - [{column -> value}, ...]
(default)
- 'dict' : dict of dict - {column -> {index -> value}, ...}
- 'list' : dict of list - {column -> [value, ...]}
All return types are passable to pd.DataFrame(). It matches the tabular data reported in the Image Properties > Recorded Data tab of the NIS Viewer.
There will be a column for each tag in the CustomDataV2_0
section of
ND2File.custom_data
, as well columns for any events recorded in the
data. Not all cells will be populated, and empty cells will be filled
with null_value
(default float('nan')
).
Legacy ND2 files are not supported.
Parameters:
-
orient
¶('records', 'dict', 'list')
, default:'records'
) –The format of the returned data. See
pandas.DataFrame - 'records' : list of dict -
[{column -> value}, ...](default) - 'dict' : dict of dict -
{column -> {index -> value}, ...}- 'list' : dict of list -
{column -> [value, ...]}` -
null_value
¶Any
, default:float('nan')
) –The value to use for missing data.
Returns:
-
ListOfDicts | DictOfLists | DictOfDicts
–Tabular data in the format specified by
orient
.
Source code in nd2/_nd2file.py
359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 |
|
frame_metadata
¶
frame_metadata(seq_index: int | tuple) -> FrameMetadata | dict
Metadata for specific frame.
See also: metadata
This includes the global metadata from the metadata function. (will be dict if legacy format).
Example output
FrameMetadata(
contents=Contents(channelCount=2, frameCount=15),
channels=[
FrameChannel(
channel=ChannelMeta(
name="Widefield Green",
index=0,
color=Color(r=91, g=255, b=0, a=1.0),
emissionLambdaNm=535.0,
excitationLambdaNm=None,
),
loops=LoopIndices(
NETimeLoop=None, TimeLoop=0, XYPosLoop=None, ZStackLoop=1
),
microscope=Microscope(
objectiveMagnification=10.0,
objectiveName="Plan Fluor 10x Ph1 DLL",
objectiveNumericalAperture=0.3,
zoomMagnification=1.0,
immersionRefractiveIndex=1.0,
projectiveMagnification=None,
pinholeDiameterUm=None,
modalityFlags=["fluorescence"],
),
volume=Volume(
axesCalibrated=[True, True, True],
axesCalibration=[0.652452890023035, 0.652452890023035, 1.0],
axesInterpretation=["distance", "distance", "distance"],
bitsPerComponentInMemory=16,
bitsPerComponentSignificant=16,
cameraTransformationMatrix=[
-0.9998932296054086,
-0.014612644841559427,
0.014612644841559427,
-0.9998932296054086,
],
componentCount=1,
componentDataType="unsigned",
voxelCount=[32, 32, 5],
componentMaxima=[0.0],
componentMinima=[0.0],
pixelToStageTransformationMatrix=None,
),
position=Position(
stagePositionUm=StagePosition(
x=26950.2, y=-1801.6000000000001, z=494.3
),
pfsOffset=None,
name=None,
),
time=TimeStamp(
absoluteJulianDayNumber=2459486.0682717753,
relativeTimeMs=580.3582921028137,
),
),
FrameChannel(
channel=ChannelMeta(
name="Widefield Red",
index=1,
color=Color(r=255, g=85, b=0, a=1.0),
emissionLambdaNm=620.0,
excitationLambdaNm=None,
),
loops=LoopIndices(
NETimeLoop=None, TimeLoop=0, XYPosLoop=None, ZStackLoop=1
),
microscope=Microscope(
objectiveMagnification=10.0,
objectiveName="Plan Fluor 10x Ph1 DLL",
objectiveNumericalAperture=0.3,
zoomMagnification=1.0,
immersionRefractiveIndex=1.0,
projectiveMagnification=None,
pinholeDiameterUm=None,
modalityFlags=["fluorescence"],
),
volume=Volume(
axesCalibrated=[True, True, True],
axesCalibration=[0.652452890023035, 0.652452890023035, 1.0],
axesInterpretation=["distance", "distance", "distance"],
bitsPerComponentInMemory=16,
bitsPerComponentSignificant=16,
cameraTransformationMatrix=[
-0.9998932296054086,
-0.014612644841559427,
0.014612644841559427,
-0.9998932296054086,
],
componentCount=1,
componentDataType="unsigned",
voxelCount=[32, 32, 5],
componentMaxima=[0.0],
componentMinima=[0.0],
pixelToStageTransformationMatrix=None,
),
position=Position(
stagePositionUm=StagePosition(
x=26950.2, y=-1801.6000000000001, z=494.3
),
pfsOffset=None,
name=None,
),
time=TimeStamp(
absoluteJulianDayNumber=2459486.0682717753,
relativeTimeMs=580.3582921028137,
),
),
],
)
Parameters:
Returns:
-
FrameMetadata | dict
–dict if legacy format, else FrameMetadata
Source code in nd2/_nd2file.py
551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 |
|
is_supported_file
staticmethod
¶
is_supported_file(path: StrOrPath) -> bool
Return True
if the file is supported by this reader.
Source code in nd2/_nd2file.py
108 109 110 111 |
|
ome_metadata
¶
ome_metadata(*, include_unstructured: bool = True, tiff_file_name: str | None = None) -> OME
Return ome_types.OME
metadata object for this file.
new in version 0.7.0
See the ome_types.OME
documentation for details on this object.
Parameters:
-
include_unstructured
¶bool
, default:True
) –Whether to include all available metadata in the OME file. If
True
, (the default), theunstructured_metadata
method is used to fetch all retrievable metadata, and the output is added to OME.structured_annotations, where each key is the chunk key, and the value is a JSON-serialized dict of the metadata. IfFalse
, only metadata which can be directly added to the OME data model are included. -
tiff_file_name
¶str | None
, default:None
) –If provided,
ome_types.model.TiffData
block entries are added for eachome_types.model.Plane
in the OME object, with theTiffData.uuid.file_name
set to this value. (Useful for exporting to tiff.)
Examples:
import nd2
with nd2.ND2File("path/to/file.nd2") as f:
ome = f.ome_metadata()
xml = ome.to_xml()
Source code in nd2/_nd2file.py
1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 |
|
open
¶
open() -> None
Open file for reading.
Note
Files are best opened using a context manager:
with nd2.ND2File("path/to/file.nd2") as nd2_file:
...
This will automatically close the file when the context exits.
Source code in nd2/_nd2file.py
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 |
|
read_frame
¶
read_frame(frame_index: SupportsInt) -> ndarray
Read a single frame from the file, indexed by frame number.
new in version 0.8.0
Source code in nd2/_nd2file.py
1083 1084 1085 1086 1087 1088 1089 1090 |
|
to_dask
¶
Create dask array (delayed reader) representing image.
This generally works well, but it remains to be seen whether performance
is optimized, or if we're duplicating safety mechanisms. You may try
various combinations of wrapper
and copy
, setting both to False
will very likely cause segmentation faults in many cases. But setting
one of them to False
, may slightly improve read speed in certain
cases.
Parameters:
-
wrapper
¶bool
, default:True
) –If
True
(the default), the returned object will be a thin subclass of adask.array.Array
(aResourceBackedDaskArray
) that manages the opening and closing of this file when getting chunks via compute(). Ifwrapper
isFalse
, then a puredask.array.core.Array
will be returned. However, when that array is computed, it will incur a file open/close on every chunk that is read (in the_dask_block
method). As suchwrapper
will generally be much faster, however, it may fail (i.e. result in segmentation faults) with certain dask schedulers. -
copy
¶bool
, default:True
) –If
True
(the default), the dask chunk-reading function will return an array copy. This can avoid segfaults in certain cases, though it may also add overhead.
Returns:
-
dask_array
(Array
) –A dask array representing the image data.
Source code in nd2/_nd2file.py
903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 |
|
to_xarray
¶
to_xarray(delayed: bool = True, squeeze: bool = True, position: int | None = None, copy: bool = True) -> DataArray
Return a labeled xarray.DataArray representing image.
Xarrays are a powerful way to label and manipulate n-dimensional data with axis-associated coordinates.
array.dims
will be populated according to image metadata, and coordinates
will be populated based on pixel spacings. Additional metadata is available
in array.attrs['metadata']
.
Parameters:
-
delayed
¶bool
, default:True
) –Whether the DataArray should be backed by dask array or numpy array, by default True (dask).
-
squeeze
¶bool
, default:True
) –Whether to squeeze singleton dimensions, by default True
-
position
¶int
, default:None
) –A specific XY position to extract, by default (None) reads all.
-
copy
¶bool
, default:True
) –Only applies when
delayed==True
. Seeto_dask
for details.
Returns:
-
DataArray
–xarray with all axes labeled.
Source code in nd2/_nd2file.py
983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 |
|
unstructured_metadata
¶
unstructured_metadata(*, strip_prefix: bool = True, include: set[str] | None = None, exclude: set[str] | None = None) -> dict[str, Any]
Exposes, and attempts to decode, each metadata chunk in the file.
new in version 0.4.3
This is provided as a experimental fallback in the event that
ND2File.experiment
does not contain all of the information you need. No
attempt is made to parse or validate the metadata, and the format of various
sections, may change in future versions of nd2. Consumption of this metadata
should use appropriate exception handling!
The 'ImageMetadataLV' chunk is the most likely to contain useful information, but if you're generally looking for "hidden" metadata, it may be helpful to look at the full output.
Parameters:
-
strip_prefix
¶bool
, default:True
) –Whether to strip the type information from the front of the keys in the dict. For example, if
True
:uiModeFQ
becomesModeFQ
andbUsePFS
becomesUsePFS
, etc... by defaultTrue
-
include
¶set[str] | None
, default:None
) –If provided, only include the specified keys in the output. by default, all metadata sections found in the file are included.
-
exclude
¶set[str] | None
, default:None
) –If provided, exclude the specified keys from the output. by default
None
Returns:
-
dict[str, Any]
–A dict of the unstructured metadata, with keys that are the type of the metadata chunk (things like 'CustomData|RoiMetadata_v1' or 'ImageMetadataLV'), and values that are associated metadata chunk.
Source code in nd2/_nd2file.py
406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 |
|
voxel_size
¶
XYZ voxel size in microns.
Parameters:
-
channel
¶int
, default:0
) –Channel for which to retrieve voxel info, by default 0. (Not yet implemented.)
Returns:
-
VoxelSize
–Named tuple with attrs
x
,y
, andz
.
Source code in nd2/_nd2file.py
776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 |
|
write_tiff
¶
write_tiff(dest: str | PathLike, *, include_unstructured_metadata: bool = True, progress: bool = False, on_frame: Callable[[int, int, dict[str, int]], None] | None | None = None, modify_ome: Callable[[OME], None] | None = None) -> None
Export to an (OME)-TIFF file.
new in version 0.10.0
To include OME-XML metadata, use extension .ome.tif
or .ome.tiff
.
Parameters:
-
dest
¶str | PathLike
) –The destination TIFF file.
-
include_unstructured_metadata
¶bool
, default:True
) –Whether to include unstructured metadata in the OME-XML. This includes all of the metadata that we can find in the ND2 file in the StructuredAnnotations section of the OME-XML (as mapping of metadata chunk name to JSON-encoded string). By default
True
. -
progress
¶bool
, default:False
) –Whether to display progress bar. If
True
andtqdm
is installed, it will be used. Otherwise, a simple text counter will be printed to the console. By defaultFalse
. -
on_frame
¶Callable[[int, int, dict[str, int]], None] | None
, default:None
) –A function to call after each frame is written. The function should accept three arguments: the current frame number, the total number of frames, and a dictionary of the current frame's indices (e.g.
{"T": 0, "Z": 1}
) (Useful for integrating custom progress bars or logging.) -
modify_ome
¶Callable[[OME], None]
, default:None
) –A function to modify the OME metadata before writing it to the file. Accepts an
ome_types.OME
object and should modify it in place. (reminder: OME-XML is only written if the file extension is.ome.tif
or.ome.tiff
)
Source code in nd2/_nd2file.py
853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 |
|
imread
¶
imread(file: Path | str, *, dask: Literal[False] = ..., xarray: Literal[False] = ..., validate_frames: bool = ...) -> ndarray
imread(file: Path | str, *, dask: bool = False, xarray: bool = False, validate_frames: bool = False) -> ndarray | DataArray | Array
Open file
, return requested array type, and close file
.
Parameters:
-
file
¶Path | str
) –Filepath (
str
) orPath
object to ND2 file. -
dask
¶bool
, default:False
) –If
True
, returns a (delayed)dask.array.Array
. This will avoid reading any data from disk until specifically requested by using.compute()
or casting to a numpy array withnp.asarray()
. By defaultFalse
. -
xarray
¶bool
, default:False
) –If
True
, returns anxarray.DataArray
,array.dims
will be populated according to image metadata, and coordinates will be populated based on pixel spacings. Additional metadata is available inarray.attrs['metadata']
. Ifdask
is alsoTrue
, will return an xarray backed by a delayed dask array. By defaultFalse
. -
validate_frames
¶bool
, default:False
) –Whether to verify (and attempt to fix) frames whose positions have been shifted relative to the predicted offset (i.e. in a corrupted file). This comes at a slight performance penalty at file open, but may "rescue" some corrupt files. by default False.
Returns:
Source code in nd2/_nd2file.py
1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 |
|
is_legacy
¶
Return True
if path
is a legacy ND2 file.
Parameters:
Returns:
-
bool
–Whether the file is a legacy ND2 file.
Source code in nd2/_util.py
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
|
is_supported_file
¶
is_supported_file(path: FileOrBinaryIO, open_: Callable[[StrOrPath], BinaryIO] = _open_binary) -> bool
Return True
if path
can be opened as an nd2 file.
Parameters:
-
path
¶Union[str, bytes, PathLike]
) –A path to query
-
open_
¶Callable[[StrOrBytesPath, str], BinaryIO]
, default:_open_binary
) –Filesystem opener, by default
builtins.open
Returns:
-
bool
–Whether the can be opened.
Source code in nd2/_util.py
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
|
nd2_to_tiff
¶
nd2_to_tiff(source: str | PathLike | ND2File, dest: str | PathLike, *, include_unstructured_metadata: bool = True, progress: bool = False, on_frame: Callable[[int, int, dict[str, int]], None] | None = None, modify_ome: Callable[[OME], None] | None = None) -> None
Export an ND2 file to an (OME)-TIFF file.
To include OME-XML metadata, use extension .ome.tif
or .ome.tiff
.
https://docs.openmicroscopy.org/ome-model/6.3.1/ome-tiff/specification.html
Parameters:
-
source
¶str | PathLike | ND2File
) –The ND2 file path or an open ND2File object.
-
dest
¶str | PathLike
) –The destination TIFF file.
-
include_unstructured_metadata
¶bool
, default:True
) –Whether to include unstructured metadata in the OME-XML. This includes all of the metadata that we can find in the ND2 file in the StructuredAnnotations section of the OME-XML (as mapping of metadata chunk name to JSON-encoded string). By default
True
. -
progress
¶bool
, default:False
) –Whether to display progress bar. If
True
andtqdm
is installed, it will be used. Otherwise, a simple text counter will be printed to the console. By defaultFalse
. -
on_frame
¶Callable[[int, int, dict[str, int]], None] | None
, default:None
) –A function to call after each frame is written. The function should accept three arguments: the current frame number, the total number of frames, and a dictionary of the current frame's indices (e.g.
{"T": 0, "Z": 1}
) (Useful for integrating custom progress bars or logging.) -
modify_ome
¶Callable[[OME], None]
, default:None
) –A function to modify the OME metadata before writing it to the file. Accepts an
ome_types.OME
object and should modify it in place. (reminder: OME-XML is only written if the file extension is.ome.tif
or.ome.tiff
)
Source code in nd2/tiff.py
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 |
|
rescue_nd2
¶
rescue_nd2(handle: BinaryIO | str, frame_shape: tuple[int, ...] = (), dtype: DTypeLike = 'uint16', max_iters: int | None = None, verbose: bool = True, chunk_start: bytes = _default_chunk_start) -> Iterator[ndarray]
Iterator that yields all discovered frames in a file handle.
In nd2 files, each "frame" contains XY and all channel info (both true
channels as well as RGB components). Frames are laid out as (Y, X, C),
and the frame_shape
should match the expected frame size. If
frame_shape
is not provided, a guess will be made about the vector shape
of each frame, but it may be incorrect.
Parameters:
-
handle
¶BinaryIO | str
) –Filepath string, or binary file handle (For example
handle = open('some.nd2', 'rb')
) -
frame_shape
¶Tuple[int, ...]
, default:()
) –expected shape of each frame, by default a 1 dimensional array will be yielded for each frame, which can be reshaped later if desired. NOTE: nd2 frames are generally ordered as (height, width, true_channels, rgbcomponents). So unlike numpy, which would use (channels, Y, X), you should use (Y, X, channels)
-
dtype
¶dtype
, default:'uint16'
) –Data type, by default np.uint16
-
max_iters
¶Optional[int]
, default:None
) –A maximum number of frames to yield, by default will yield until the end of the file is reached
-
verbose
¶bool
, default:True
) –whether to print info
-
chunk_start
¶bytes
, default:_default_chunk_start
) –The bytes that start each chunk, by default 0x0ABECEDA.to_bytes(4, "little")
Yields:
-
ndarray
–each discovered frame in the file
Examples:
>>> with open('some_bad.nd2', 'rb') as fh:
>>> frames = rescue_nd2(fh, (512, 512, 4), 'uint16')
>>> ary = np.stack(frames)
You will likely want to reshape ary
after that.
Source code in nd2/_parse/_chunk_decode.py
304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 |
|