Loading functions¶
eitprocessing.datahandling.loading.load_eit_data
¶
load_eit_data(
path: str | Path | list[str | Path],
vendor: Vendor | str,
label: str | None = None,
name: str | None = None,
description: str = "",
sample_frequency: float | None = None,
first_frame: int = 0,
max_frames: int | None = None,
) -> Sequence
Load EIT data from path(s).
PARAMETER | DESCRIPTION |
---|---|
path
|
relative or absolute path(s) to data file. |
vendor
|
vendor indicating the device used.
Note: for load functions of specific vendors (e.g.
TYPE:
|
label
|
short description of sequence for computer interpretation.
Defaults to "Sequence_
TYPE:
|
name
|
short description of sequence for human interpretation. Defaults to the same value as label.
TYPE:
|
description
|
long description of sequence for human interpretation.
TYPE:
|
sample_frequency
|
sample frequency at which the data was recorded. Default for Draeger: 20 Default for Timpel: 50 Default for Sentec: 50.2
TYPE:
|
first_frame
|
index of first frame to load. Defaults to 0.
TYPE:
|
max_frames
|
maximum number of frames to load. The actual number of frames can be lower than this if this would surpass the final frame.
TYPE:
|
RAISES | DESCRIPTION |
---|---|
NotImplementedError
|
is raised when there is no loading method for |
RETURNS | DESCRIPTION |
---|---|
Sequence
|
a Sequence with the given label, name and description, containing the loaded data.
TYPE:
|
Example: