PyRecord

class multimodars.PyRecord(frame, phase, measurement_1, measurement_2)

Bases: object

Python representation of a per-frame measurement record.

frame

Frame number within the acquisition sequence.

Type:

int

phase

Cardiac phase identifier: "D" for diastole or "S" for systole.

Type:

str

measurement_1

Primary measurement value. In coronary artery anomalies this is the wall thickness between the aorta and the coronary artery.

Type:

float or None

measurement_2

Secondary measurement value. In coronary artery anomalies this is the wall thickness between the pulmonary artery and the coronary artery.

Type:

float or None

Examples

>>> record = PyRecord(
...     frame=5,
...     phase="D",
...     measurement_1=1.4,
...     measurement_2=2.1
... )