Exemplo n.º 1
0
        private static List <MeasurementSpecification> RightCoronaryArterySpecs(PatientData pd)
        {
            var specs = new List <MeasurementSpecification>();
            Dictionary <string, string> props = new Dictionary <string, string>();

            specs.Add(new MeasurementSpecification("Right Coronary Artery", "Diameter", new Dictionary <string, string>(props), "mm", formula: CoronaryArteryInvolvementFormula.RightCoronaryArtery(pd, "right coronary artery"), includeImageMode: true, unitEnum: LengthUnit.Millimeter));
            props.Clear();

            return(specs);
        }
Exemplo n.º 2
0
        private static List <MeasurementSpecification> AnteriorDescendingBranchOfLeftCoronaryArterySpecs(PatientData pd)
        {
            var specs = new List <MeasurementSpecification>();
            Dictionary <string, string> props = new Dictionary <string, string>();

            specs.Add(new MeasurementSpecification("Anterior Descending Branch of Left Coronary Artery", "Diameter", new Dictionary <string, string>(props), "mm", formula: CoronaryArteryInvolvementFormula.LeftAnteriorDescending(pd, "left anterior descending artery"), includeImageMode: true, unitEnum: LengthUnit.Millimeter, altName: "Left Anterior Descending Artery"));
            props.Clear();

            return(specs);
        }