Skip to main content
NIHPA Author Manuscripts logoLink to NIHPA Author Manuscripts
. Author manuscript; available in PMC: 2021 Jun 16.
Published in final edited form as: Expert Rev Med Devices. 2020 Jun 16;17(6):565–577. doi: 10.1080/17434440.2020.1777855

Artificial intelligence: improving the efficiency of cardiovascular imaging

Andrew Lin 1, Márton Kolossváry 2, Ivana Išgum 3,4,5, Pál Maurovich-Horvat 2,6, Piotr J Slomka 7, Damini Dey 1
PMCID: PMC7382901  NIHMSID: NIHMS1603207  PMID: 32510252

Abstract

Introduction

Artificial intelligence (AI) describes the use of computational techniques to mimic human intelligence. In healthcare, this typically involves large medical datasets being used to predict a diagnosis, identify new disease genotypes or phenotypes, or guide treatment strategies. Noninvasive imaging remains a cornerstone for the diagnosis, risk stratification, and management of patients with cardiovascular disease. AI can facilitate every stage of the imaging process, from acquisition and reconstruction, to segmentation, measurement, interpretation, and subsequent clinical pathways.

Areas covered

In this paper, we review state-of-the-art AI techniques and their current applications in cardiac imaging, and discuss the future role of AI as a precision medicine tool.

Expert opinion

Cardiovascular medicine is primed for scalable AI applications which can interpret vast amounts of clinical and imaging data in greater depth than ever before. AI-augmented medical systems have the potential to improve workflow and provide reproducible and objective quantitative results which can inform clinical decisions. In the foreseeable future, AI may work in the background of cardiac image analysis software and routine clinical reporting, automatically collecting data and enabling real-time diagnosis and risk stratification.

Keywords: Artificial intelligence, cardiovascular imaging, deep learning, machine learning, precision medicine, risk stratification


Artificial intelligence (AI) is rapidly gaining importance in healthcare and in cardiology. The clinical introduction of data-rich technologies such as the “omics” fields (such as genomics, metabolomics, proteomics, lipidomics), electronic health records (EHRs), and wearable device biometrics provides cardiologists with access to vast amounts of information from many different fields of biomedicine. The big data generated by cardiovascular imaging is heterogeneous and quickly changing, requiring increasingly sophisticated and efficient computational models for the interpretation of these datasets. AI has the potential to facilitate every stage of the imaging process, from acquisition and reconstruction, to measurement, interpretation, and risk stratification (Figure 1). In doing so, AI may assist physicians in delivering more efficient and personalized patient care with improved accuracy, reduced analysis time and associated cost. Precision medicine refers to the tailoring of diagnostic, prognostic, and therapeutic strategies based on specifics derived from an individual’s omics data, clinical features, biomarkers, imaging results, behavior, and environmental factors. Noninvasive imaging has a fundamental role in the diagnosis, risk stratification, and management of patients with cardiovascular disease. It is important for clinicians and scientists working in cardiac imaging to understand the impact of AI in this field. In this paper, we review state-of-the-art AI techniques and their current applications in improving the efficiency of cardiovascular imaging, and discuss the future role of AI as a precision medicine tool.

Figure 1. Applications of artificial intelligence in precision cardiovascular imaging.

Figure 1.

Anti-clockwise from the 12-o’clock position: integration of biometric and clinical data from wearable devices and electronic health records; automated image acquisition and reconstruction; automated image segmentation and quantification, including radiomic analysis; real-time prediction of diagnosis; and risk stratification for adverse cardiovascular events.

1. INTRODUCTION TO AI

AI describes the use of computational techniques to perform tasks that normally require human intelligence, such as visual perception, understanding language, pattern recognition, planning, problem solving, and decision making (1). In healthcare, this typically involves complex medical data being used to predict a diagnosis, identify new disease genotypes or phenotypes, or guide treatment strategies.

In 1950, Alan Turing, one of the founders of modern computers and AI, developed the “Turing test” to determine whether a computer can demonstrate intelligent behavior equivalent to that of humans (2). Passing the test would require a computer to hold natural language conversations with a human interrogator, without the interrogator being able to distinguish the computer’s responses from those of a human. Whilst this conceptualized artificial general intelligence, many researchers since have focused on training computers to perform specific cognition related tasks. The 1980s and 1990s saw a surge in AI interest, with approaches such as fuzzy set systems, Bayesian networks, and artificial neural networks applied to various clinical settings in medicine. In 2016, AI research in healthcare attracted more funding than AI projects in any other sector (3).

The term big data refers to extremely large datasets which cannot be analyzed, interpreted, or stored efficiently using conventional data-processing techniques (4). In healthcare, this includes “omic” data (genomics, proteomics, metabolomics, lipidomics), biometrics from streaming mobile devices, clinical data from EHRs, and image-derived information. Biobanks are structured collections of big data containing biological samples and associated medical data that are stored specifically for research purposes (5). Atlases are collections of big data from different domains, either individualized or population-based, which integrate vast amounts of otherwise disconnected information to identify the relationships and variations within patients or groups (6). While big data by themselves have no clinical value, the processing of big data using AI enables the discovery of patterns within datasets, as well as the training and refinement of diagnostic or prognostic computational algorithms.

1.1. Machine learning

Machine learning (ML) is a subset of AI which gives computers the ability to automatically learn to perform a task and improve from experience by being exposed to large amounts of data, without being explicitly programmed in decision making (7). Such techniques can be used to analyze big data, learn rules, and identify interaction patterns among variables. A feature is an individual measurable property or characteristic within a dataset that can be used as inputs to ML computational techniques (8). In imaging, this could be a voxel intensity or brightness, the spatial relation of voxels, a vector of motion, or any other measurement from images. Feature selection involves choosing a subset of relevant variables while eliminating redundant ones, and is used to reduce the dimensionality of data and prevent overfitting of the model.

ML can be categorized into three learning types: supervised; unsupervised; and reinforcement (Table 1). Supervised learning algorithms use a labeled dataset to predict a desired outcome. This involves the iterative selection, processing, and weighting of individual features to learn the underlying patterns within the data that best fit the given outcome (7). Supervised learning can be sub-categorized into regression and classification algorithms, which use continuous and categorical output variables, respectively. Regression is a well-known and widely applied supervised ML algorithm, whereby stepwise models are effectively learned. Classification methods test data using support vector machines, random forests, and artificial neural networks to identify the best fit differentiation (7). Limitations of supervised learning include the need for large labeled training datasets and validation datasets. Also, it often requires manual labeling of large amounts of data which can be time-consuming. Furthermore, algorithms can only predict known outcomes.

Table 1.

Machine learning techniques

Supervised learning
Regression analysis Widely used form of machine learning that generates an algorithm to define a relationship between multiple predictor variables and an outcome of interest. Stepwise models iteratively add or remove predictors based on the strength of their association with the outcome in order to find the best performing model.
Support vector machines This algorithm defines linear or higher dimension “hyperplanes” that separate training data into classes to predict outcomes. When presented with new data, these models can predict the class to which it belongs.
Random forest Consists of a multitude of individual decision trees that operate as an “ensemble”; an item is classified according to the most common output from all of the decision trees.
Artificial neural networks (ANN) Modeled on human neural processing, these nodal networks are comprised of interconnected layers (input layer, multiple hidden layers, output layer) which analyze and classify the input data. A mathematical model is used to pass on the results to successive layers. ANNs can learn which connections are most useful for classifying data and weight these accordingly.
Unsupervised learning
Principal component analysis (PCA) Data is summarized by combining existing features to create a new set of independent variables, or principal components. The process of focusing in on only a few variables is called dimensionality reduction. PCA allows the features that account for the most variation in the dataset to be identified.
Clustering techniques The algorithm identifies inherent groupings, or clusters, in the data, and uses these clusters to classify new data.
 Hierarchical clustering A hierarchical decomposition of the data is created by sequentially merging similar clusters (an agglomerative approach), or beginning with a single cluster which is split into smaller clusters at each step (a divisive approach).
 K-means clustering A distance-based algorithm, in which similarity is defined by the proximity to the “centroid” (mean, median, or medoid) of the cluster. The ‘K’ in K-means denotes the number of clusters.
 Model-based clustering Based on the assumption that data originates from a distribution (normal or Gaussian) that is a mixture of two or more clusters, and that each data point has a probability of belonging to each cluster.
 Density-based spatial clustering The algorithm focuses on the proximity and density of data to find arbitrarily shaped clusters and outliers (noise). For each point of a cluster, the “neighborhood” must contain at least a minimum number of points.
Reinforcement learning The machine learns how to interact with its environment through trial and error, in order to maximize the total reward.
Deep learning (DL) A class of ANN algorithms in which more hidden layers are used than in traditional neural networks; “deep” simply describes a multilayer separation approach. Most DL models use convolutional neural networks, in which the hidden layers contain one or more convolutional layers that apply a filter to an input to create a feature map. As with machine learning, DL can be classified as supervised, unsupervised, or reinforcement learning.

In unsupervised learning, unlabeled data are used to predict unknown outcomes, and the algorithm must discover hidden patterns within the dataset. Such techniques include principal component analysis and the wide array of clustering algorithms which cluster data into groups based on similarity (7) (Table 1). The major challenge in unsupervised learning is difficulty in identifying the initial cluster pattern (how many clusters there are, and their respective boundaries), which may lead to overfitting of the model to the dataset. Hence, these models require validation in multiple cohorts. Reinforcement learning is learning by interacting with an environment. The algorithm learns, through sequential trial and error, so that the actions that maximize the cumulative reward over time are enforced, while others are forgotten (9). This approach features strongly in gaming, however is infrequently applied to medicine.

1.2. Deep learning

Deep learning (DL), a subset of ML, mimics human cognition using multiple interconnected layers of artificial neural networks. The most distinct characteristics of DL networks is that they learn from the data thereby circumventing the need for expert-design of features used to perform a task. The most commonly used DL networks are convolutional neural networks (CNNs), which contain one or more convolutional layers that apply a filter to an input to create a feature map summarizing the presence of detected features in the input (10). The growth of DL has been accelerated by hardware advances such as graphic processing units and vast labeled datasets. DL has been implemented in daily technologies such as self-driving vehicles, robots, and speech- and image-recognition software. In 2016, DeepMind’s AlphaGo Zero neural network defeated the human world champion in the ancient Chinese game of Go. The earliest commercial applications of DL were for computer vision, or computational techniques to ‘see’, identify and process digital images and videos in the same way as human vision (10). Accordingly, initial healthcare applications of DL were in image analysis, most notably training CNNs to detect diabetic retinopathy (11) and malignant melanomas (12).

2. CURRENT APPLICATIONS OF AI IN CARDIOVASCULAR IMAGING

2.1. Image acquisition and reconstruction

Echocardiography remains the most widely used cardiac imaging modality. The increasing uptake of hand-held ultrasound devices and focused scanning protocols have enabled the rapid, point-of-care evaluation of cardiac structure, function and hemodynamics (13). However, performance of echocardiographic examinations is operator-dependent and intensive training is required for proficiency. The automation of image acquisition may eliminate some of these training and skill maintenance requirements. Commercial vendors have developed DL-based real-time guidance software to guide untrained providers in acquiring standard echocardiographic views, whereby the operator optimizes an accuracy signal that indicates how close they are to the desired view (14). These DL models can automatically analyze the acquired image dataset to identify and label heart anatomy, then slice standard views for presentation. This process reduces inter-operator variability, as the optimal views are selected based on thousands of deep learned examinations representing the spectrum of anatomical variations. Recently, a CNN used to identify 8 standard 3D echocardiographic views achieved an accuracy of 92% compared to ground truth training data labeled by clinicians (15). Such automation of image acquisition may enable non-cardiologists to perform echocardiography as a first-line diagnostic tool in acute settings, and also facilitate the training of cardiac sonographers.

In cardiac MRI (CMR), high-quality imaging requires careful patient positioning and planning of image acquisition planes by experienced operators. Vendors have developed ML-based automated software for anatomical localization of the heart and view-planning which have shown high agreement with manual methods (16,17). AI has also been applied to real-time detection and suppression of imaging artefact using random forest (18) and CNN (19) algorithms. One of the major limitations of standard cine CMR is the slow acquisition of images, which are often complicated by cardiac and respiratory motion. This requires patient cooperation with breath-holding and long scan times, while increasing the cost and reducing the accessibility of CMR. Compressed sensing reconstruction was developed to accelerate CMR image acquisition and improve patient compliance, at the same time achieving high spatiotemporal resolution by undersampling k-space (or temporary image space) data. Certain compressed sensing methods (20,21) apply ML algorithms which exploit the sparsity (or compressibility) of CMR images to sample k-space and recover only data with significant image information. Recently, CNNs trained to learn the optimal sparse representation from image data have demonstrated very fast reconstruction speeds (<10 s) (22), enabling their potential integration into clinical workflow.

2.2. Image segmentation

Segmentation is the process of partitioning a medical image into anatomically meaningful regions, based on which quantitative measures can be extracted. Traditional ML techniques have been shown to perform well in cardiac image segmentation (23), however require significant feature selection or prior knowledge to achieve satisfactory accuracy. By contrast, DL algorithms can automatically discover features from data for object detection and segmentation.

In echocardiography, the LV has been the focus of most AI segmentation studies. Fully automated ML algorithms using random forest classifiers have demonstrated good accuracy for delineating the LV endocardial boundary on 2D echocardiography compared to expert readers (24,25). Recently, DL using encoder-decoder CNNs was applied to a labeled dataset of 2D echocardiographic images from 500 patients, outperforming state-of-the-art non-DL methods in segmenting LV endocardial and epicardial boundaries. This fully automated analysis enabled the accurate estimation of LV volumes and ejection fraction compared to manual annotation by cardiologists (26). LV segmentation on 3D echocardiography is challenging due to the lower contrast, higher noise and data dimensionality, and limited annotation of datasets. To address these limitations, investigators have combined DL with atlas prior knowledge (27) and deformable models (28) to achieve accurate and efficient automated LV segmentation. For the evaluation of myocardial motion, LV segmentation is usually combined with a temporal tracking algorithm that follows the myocardial border across frames (29).

More AI-based segmentation algorithms have been developed for CMR than for any other cardiac imaging modality, partly due to the increase in publicly available data for CMR segmentation tasks in recent years. The majority of work has focused on segmenting cardiac chambers, with relatively fewer studies on segmenting abnormal myocardial tissue regions such as LV scar and atrial fibrosis. Delineating the borders of the chambers and myocardium is an integral step in CMR post-processing, however manual contouring is time-consuming and subject to reader bias (30). AI algorithms can automate this task while improving accuracy and reproducibility (31). A common DL technique for CMR segmentation is the use of a fully convolutional neural network (FCN), a special type of CNN without any fully connected layers (32). The addition of spatial or temporal contexts (33) or anatomical constraints (taking into account contour and shape information) (34) to guide 2D FCNs can improve their accuracy. In a large dataset of 4,875 subjects and 93,500 images from the UK Biobank, an FCN-based method performed as well as clinical experts in the segmentation of all four cardiac chambers (35). Similarly, an anatomically-constrained CNN was shown to accurately segment the LV and capture anatomical shape variations that are linked to cardiac pathologies (36). Nevertheless, current DL segmentation models lack reliability, often providing little agreement with expert readers or producing anatomically implausible results (31). To address this limitation, Sander et al (37) developed an automated segmentation model based on dilated CNNs which generated segmentation masks and spatial uncertainty maps for each input image. The investigators trained this model to segment the LV and RV in 100 CMR scans, and demonstrated that image areas of “high uncertainty” accurately corresponded to segmentation errors; such uncertainty maps thus have the potential to increase segmentation performance.

One of the first applications of DL in cardiac CT was an algorithm which used Marginal Space Learning – which incrementally learns classifiers in marginal spaces of lower dimensions – to model and automatically segment all four heart chambers from 3D volumes (38). Several CNN-based cardiac chamber segmentation methods have been applied to non-contrast cardiac CT (39,40) and CT angiography (41,42); most have used U-Net, a FCN designed specifically for medical image segmentation. Beyond cardiac chambers, coronary artery segmentation from CT angiography enables luminal stenosis grading, plaque assessment, and blood flow simulation. The two major steps in this process, coronary centerline extraction and lumen segmentation, can now be performed using CNNs either end-to-end (43) or as pre- or post-processing steps for traditional methods (44,45). Segmentation of the heart valves has been of particular interest due to the surge in transcatheter valve replacement procedures, which require valve modeling and precise sizing of the implants. Marginal Space Learning can provide patient-specific modeling and segmentation of all 4 heart valves from cardiac CT; this framework incorporates a constrained multilinear shape method to represent the complex spatio-temporal variations of the valves (46).

2.3. Automated measurements

AI has been increasingly applied to the automated quantification of 2D and 3D echocardiograms. Early software used traditional ML to automatically perform rapid and accurate calculation of LV ejection fraction based on 2D LV volumes (47). ML and DL algorithms have since been utilized to quantify a variety of other 2D parameters such as LV hypertrophy (48), wall motion abnormalities (49), myocardial velocity (50), and longitudinal strain (51). Doppler echocardiography, which measures blood flow, provides a velocity-time image for assessment of valvular function. A ML framework using hierarchical clustering has provided automated Doppler measurements of mitral inflow and aortic and tricuspid regurgitation (52). Further, a support vector machine was able to accurately quantify the severity of mitral regurgitation based on textural features on 2D images (53).

Current chamber quantification guidelines recommend the use of 3D over 2D echocardiography due to its superior accuracy and reproducibility (54). However, 3D echocardiography requires specialized training and is time-consuming, limiting its widespread adoption into routine clinical practice. ML techniques can provide rapid and reproducible automated measurements of LV and left atrial volumes throughout the cardiac cycle, which are comparable to CMR reference values (55,56) and perform well in different centers (57) and unselected patient populations (58). Further refinements to these ML algorithms have enabled the determination of LV mass (59) and right ventricular (RV) volume and ejection fraction (60). Utilizing AI for 3D echocardiography may improve workflow as more cardiologists incorporate this technology into their clinical laboratories.

DL methods can also be used to quantify a number of functional parameters on CMR. LV segmentation algorithms which automatically detect myocardial boundaries now enable fully automated measurements of LV volume, ejection fraction, and mass from cine imaging which have high agreement with expert readers (6163). CMR is the preferred modality for clinical RV assessment, however manual measurements of the RV are time-consuming and subject to variability due to the complex anatomy of this chamber. Recent studies have applied DL algorithms to automatically segment the RV endocardium, producing accurate measurements of RV volumes and ejection fraction compared to manual annotation by experts (64,65).

AI has also been applied to a variety of CMR tissue characterization tasks. Scar volume quantification on late gadolinium enhancement (LGE) CMR is a valuable imaging biomarker for risk stratification and procedural planning, and DL can potentially replace the subjective and labor-intensive manual measurements of routine clinical practice. CNN-based algorithms are able separate LV scar from normal myocardium in the feature space and accurately quantify scar volume in patients with ischemic (66) and hypertrophic (67) cardiomyopathies. Similarly, fully automated techniques exist for measuring the extent of left atrial scarring in patients with chronic atrial fibrillation which could enhance selection of the appropriate patient and strategy for catheter ablation (68,69). Native T1 mapping on CMR enables the quantification of interstitial diffuse fibrosis, and a deep FCN has been used to automate global and regional myocardial T1 measurements, demonstrating high correlation with manual analysis (70).

The presence of coronary artery calcium (CAC) assessed via CT is a direct marker of coronary atherosclerosis and strong predictor of cardiovascular events (71). Manual measurement of the CAC score can be tedious, especially when image artefacts or numerous calcifications are present. ML and DL algorithms applied to large datasets of ungated, non-contrast chest CTs acquired for lung cancer screening have been shown to accurately and automatically calculate the Agatston CAC score compared to the manual reference standard (72,73). More recent ML and DL approaches have enabled reliable and rapid automated Agatston score measurements from dedicated non-contrast calcium scoring CT scans (74,75) and coronary CTA (76).

The detection and quantification of coronary stenosis is perhaps most important clinical application of coronary CTA, with current reporting based on subjective visual assessment by clinicians. Kelm et al. (77) used a ML algorithm to automatically identify, grade and classify coronary stenosis caused by both calcified and non-calcified plaques. Following centerline extraction and lumen segmentation, their random forest model trained on 229 CTA volumes performed accurate stenosis identification and lumen cross-sectional area estimation, with an average processing time of 1.8 s per case. Similarly, Zreik et al. (78) trained a recurrent CNN to accurately detect coronary plaque, determine its composition, and classify the coronary stenosis as obstructive or non-obstructive. The hemodynamic importance of a given stenosis can also be estimated through AI techniques. A novel DL algorithm to calculate noninvasive fractional flow reserve (FFR), trained on a large dataset of synthetically generated coronary models, demonstrated similar accuracy and faster execution times (∼2.4 s per case) compared to computationally expensive 3D flow simulations, with invasive FFR reference (79). This DL model was further validated against invasive FFR in a multicenter registry of 351 patients and 525 vessels (80), and has the potential to deliver real-time, on-site FFR computations with high predictive power. Very recently, an unsupervised DL technique to analyze a complete coronary artery from a CCTA-derived 3D volume and extract lower-dimensional encoding was shown to reliably detect functionally-significant stenosis as defined by invasive FFR (81).

Epicardial adipose tissue (EAT) is a metabolically active fat depot within the visceral pericardium which directly encases the coronary arteries. There is evidence that EAT exerts a local pathological effect on the coronary vasculature (82) and associates with adverse cardiovascular events (83). DL has been used to perform rapid (< 2 s), fully automated quantification of EAT volume from non-contrast CT datasets, with high accuracy compared to an expert reader (R = 0.979, p<0.001) (84). This DL model was validated across different patient cohorts, CT scanners, and protocols (85). Automated measurements of CAC and EAT have the potential for integration into routine clinical reporting of calcium scoring CT, and may improve workflow and accuracy in cardiovascular risk assessment.

2.4. Image interpretation

Automated cardiac image interpretation using computer vision has shown great promise in assisting clinicians with image-based diagnosis in radiology, pathology and dermatology, for example, in detecting pneumothorax on chest X-rays (86), identifying cancer on biopsy specimens (87), and classifying photographs of benign versus malignant skin lesions (12). Echocardiography presents its own challenges, with a typical study consisting of over 70 video clips collected from many unlabeled acquisition angles, subject to intrinsic beat-to-beat variability in cardiac performance. Given the sheer amount of multidimensional data in each study that often goes unused, several studies have applied automated learning approaches to assist in human interpretation of echocardiography. Madani et al. (88) used a CNN to simultaneously classify 15 standard views with more accuracy than experienced echocardiographers. Zhang et al. (89) trained a CNN on 14,035 echocardiograms to accurately identify 23 viewpoints and flag partially obscured cardiac chambers. The same investigators then applied disease classification models to accurately detect one of three states (hypertrophic cardiomyopathy, cardiac amyloidosis, and pulmonary hypertension) based on median calculated probability. Narula et al. (90) showed a ML model incorporating 20 different echocardiographic variables in the systolic phase of the cardiac cycle to outperform conventional diastolic and strain parameters in discriminating physiological versus pathological patterns of LV hypertrophy. Finally, an unsupervised ML algorithm using hierarchical cluster analysis of diastolic echocardiographic parameters reliably classified the presence or absence of diastolic dysfunction compared to guideline-based diagnoses. This unique clustering of patients provided significant survival discrimination for cardiac mortality and rehospitalization, whereas guideline-based strata did not (91).

The inclusion of CMR biomarkers into ML models also has the potential to augment traditional risk prediction scores. Ambale-Venkatesh et al. (92) applied a random forest technique to 6,814 subjects from the MESA (Multi-Ethnic Study of Atherosclerosis), demonstrating that among 725 variables, CMR-derived LV structure and function were among the top predictors for incident heart failure. The random forest risk prediction performed better than the Framingham, ASCVD, and MESA risk scores for prediction of adverse cardiovascular events. ML has also been used for risk stratification of patients with established cardiovascular disease. Kotu et al. (93) applied supervised ML to predict the occurrence of cardiac arrhythmias in survivors of myocardial infarction. The investigators found that CMR-derived scar textural features had discriminative power comparable to current criteria such as LV ejection fraction and scar size. Moreover, Bello et al. (94) trained a FCN using CMR-derived time-resolved 3D models of RV motion to predict outcomes in patients with pulmonary hypertension; this DL model outperformed conventional Cox models containing RV volume and strain parameters.

AI has also been used to integrate clinical and coronary CTA data for ischemia and outcome prediction. A substudy of the NXT (Analysis of Coronary Blood Flow Using CT Angiography: Next Steps) trial showed a ML risk score combining clinical variables and quantitative plaque metrics on CTA to improve the prediction of lesion-specific ischemia by invasive FFR, over pre-test likelihood of CAD or individual plaque meaures (95). Further, in an analysis of 10,030 patients from the CONFIRM (Coronary CT Angiography EvaluatioN For Clinical Outcomes: An InteRnational Multicenter) registry, a ML model combining 25 clinical and 44 visually assessed coronary CTA parameters predicted 5-year all-cause mortality significantly better than existing clinical or CTA metrics alone (96) (Figure 3). Finally, Commandeur et al. (97) used a gradient-boosted ML algorithm (XGBoost) for prognostication in 1,912 asymptomatic subjects from the EISNER (Early Identification of Subclinical Atherosclerosis by Noninvasive Imaging Research) trial who underwent CAC scoring with non-contrast CT scans and 14-year follow-up. The final ML risk score integrating clinical variables, CAC score, and automated EAT measurements outperformed the atherosclerotic cardiovascular disease (ASCVD) risk score and CAC score alone for long-term prediction of cardiac events.

Figure 3. ML prediction of all-cause mortality.

Figure 3.

Receiver-operating characteristics curves for prediction of 5-year all-cause mortality: a ML risk score integrating clinical and coronary CTA data had a higher AUC than the Framingham Risk Score (FRS) and CTA severity scores (Segment Stenosis Score [SSS], Segment Involvement Score [SIS], Duke Index [DI]) (p<0.001†). AUC: area under the curve; CTA: computed tomography angiography; ML: machine learning. Reproduced with permission from Motwani et al. (96).

The field of nuclear cardiology has seen an increasingly high level of AI-based automation for image interpretation compared to other modalities. SPECT myocardial perfusion imaging (MPI) is widely used for the diagnosis of coronary artery disease (CAD), and the total perfusion deficit (TPD) is a computer-derived measure of the extent and severity of ischemia. Fully automated quantification of TPD using ML algorithms has shown equivalent accuracy to visual assessment by expert readers (98) for the detection of obstructive CAD on invasive angiography; and superior accuracy to expert analysis (area under the curve [AUC] 0.94 vs 0.89, p<0.001) when clinical data is included in the ML model (99). The first application of DL in cardiology to obtain a direct diagnosis from the entire 3D patient image was recently reported by Betancur et al. (100). Using 1,638 fast SPECT MPIs from REFINE SPECT (Registry of Fast Myocardial Perfusion Imaging with NExt generation SPECT), the investigators trained and validated a CNN to directly analyze polar map image data and detect obstructive CAD in each vascular territory (Figure 2). This model outperformed standard TPD assessment (AUC 0.80 vs 0.78, p<0.01), with a computation time of <0.5 s per patient. Recently, a boosted ensemble ML algorithm (LogitBoost) integrating clinical and quantitative SPECT MPI parameters predicted early revascularization (101) and 3-year risk of major adverse cardiac events (102) with higher accuracy than visual or TPD assessments alone.

Figure 2. Deep learning prediction of obstructive CAD from myocardial perfusion imaging.

Figure 2.

SPECT polar map images are directly connected to the CNN, and patterns of perfusion defects are identified via feature extraction (left). These image features then pass through 3 fully connected layers (FC) in a deep learning process (centre) which predicts the probability of obstructive CAD in each vascular territory (right). CAD: coronary artery disease; CNN: convolutional neural network; LAD: left anterior descending; LCx: left circumflex; RCA: right coronary artery; ReLU: rectified linear unit (linear function mapping input to output values); QPS: quantitative perfusion SPECT. Reproduced with permission from Betancur et al. (100).

2.5. Radiomics

The ability of ML techniques to handle high-dimensional data has facilitated the growth of a new field in medical imaging known as radiomics. This refers to the process of extracting a large number of quantitative imaging features from a given region of interest to create big data in which each abnormality is characterized by hundreds of parameters extending far beyond those that can be characterized by the human eye (103). The quantitative features are calculated using dedicated software, which accepts the image datasets as inputs. Following feature extraction, datamining and ML approaches are used to find new, meaningful patterns between the different parameters, with the aim of identifying novel imaging biomarkers which may reflect the underlying pathophysiology of a tissue. Radiomic features can be typically be classified as shape-based, intensity-based, or texture-based (103). Shape features describe the geometric properties of the region of interest, while intensity-based metrics are calculated from the absolute voxel values themselves. Texture analysis is the modeling of the spatial distribution of voxel gray-level intensities, using second- or higher-order statistics to provide a measure of heterogeneity within the region of interest (104).

Given that many of the extracted radiomic features are redundant, unsupervised ML techniques are applied for feature selection prior to model building; the two most common techniques being cluster analysis and principal component analysis (105). All selected features considered reproducible, informative, and non-redundant are then used for association analysis. In addition to traditional statistical methods, ML approaches such as regression, random forests and artificial neural networks are utilized to build a multivariable model to predict an outcome (105).

The first applications of radiomics and texture analysis in CMR were for segmentation of LV scar in areas of myocardial infarction, enabling determination of scar size and a precise description of scar characteristics (106,107). More recent studies used texture analysis for distinguishing between acute and chronic infarction (108) and performing myocardial viability assessment purely from non-enhanced cine imaging (109). Several investigators have also applied texture analysis to distinguish between etiologies of LV hypertrophy (110) and to detect fibrosis in patients with hypertrophic cardiomyopathy (111). Further, textural features may have prognostic importance in hypertrophic cardiomyopathy, with a recent study demonstrating increased fibrosis heterogeneity on LGE imaging to predict adverse cardiovascular events (112). Beyond structural heart disease, radiomics and texture analysis may enable more accurate quantification of myocardial inflammation. High intramyocardial inhomogeneity on T1 and T2 maps has been shown to perform better than the average T1 and T2 values for diagnosing acute myocarditis using either clinical criteria (113) or endomyocardial biopsy (114) as the reference standard.

Coronary atherosclerotic plaques consist of distinct histological components with different attenuation values on CTA; each voxel is a separate measurement of the amount of radiation absolved in the given volume. This has enabled the assessment of plaque morphology in vivo, and several qualitative (115) and quantitative (116) imaging biomarkers are known to associate with adverse cardiovascular events. However, visual assessment of plaque features is prone to inter-reader variability, and current plaque quantification is based on the absolute voxel attenuation values without considering the relationship between voxels. Radiomics can provide an objective, mathematical or AI-based description of plaque which incorporates the spatial distribution of voxels (Figure 4). This approach has been shown to outperform conventional qualitative and quantitative parameters for the identification of high-risk plaque (117,118). Moreover, in an ex vivo study, a radiomics-based ML model improved the discriminatory power of coronary CTA in identifying histologically-determined advanced atherosclerotic lesions (119).

Figure 4. Radiomic analysis of plaque on coronary CTA.

Figure 4.

(A) Curved multiplanar reconstruction of the left anterior descending artery showing mixed plaque in the midsegment. (B) For radiomic analysis, all voxels containing plaque are extracted from the region of interest. (C) Large numbers (typically >1,000) of intensity-, texture-, or shaped-based features are quantified to create big data, which can be analyzed using machine learning. CTA: computed tomography angiography. Reproduced with permission from Nicol et al. (120).

3. PITFALLS AND BARRIERS TO AI IMPLEMENTATION

While the AI developments described are exciting, there are several foreseeable obstacles to their translation into everyday clinical practice. Firstly, large, well-structured and labeled datasets are needed for the training and validation of new techniques. In healthcare, legal barriers often hamper data sharing, and thus far only a limited number of datasets have been made publicly available. Encouragingly, biobanks and international consortia managing medical imaging databases, such as the UK Biobank (5) and the Cardiac Atlas Project (6), have overcome many of the ethical, legal, and organizational barriers associated with data sharing. Besides data availability, the quality of data is crucial for development of accurate AI systems. Hence, standardization of clinical data recording and image acquisition protocols is required before data from different centers can be used as input by a standard AI model. Although the addition of clinical and other non-image data enhances the diagnostic and prognostic value of images, seamless integration of the EHR with image datasets is needed. The ImageGuide registry was established to collect images with linked clinical and outcome data from echocardiography and nuclear cardiology laboratories across the United States; such systems can potentially be used to feed AI models.

Secondly, AI algorithms trained and tested with single institution data may not be generalizable to different cohorts. There is the need for external validation of these models at multiple centers before their widespread clinical adoption. Further, as the input of patient characteristics and disease patterns change over time, AI models may benefit from continuous update, and thus large and dynamic datasets are desired. Thirdly, the emergence of high-level image analysis and interpretation may be met with some level of physician resistance. AI is often seen as a “black box”, achieving analytic, diagnostic and predictive accuracy without providing an explanation of its decision making. It is therefore important to demystify ML by introducing, wherever possible, “explainable AI”. Figure 5 shows an example of such explainable AI, whereby ML integration of clinical data and imaging measures was able to provide individualized risk prediction for adverse cardiac events in two patients from the EISNER trial (97).

Figure 5. Explainable AI through individualized ML risk prediction.

Figure 5.

ML model for the prediction of myocardial infarction (MI) and cardiac death with subject-specific feature importance for a 62-year-old man with no event (A) and a 74-year-old woman with MI (B). The X-axis corresponds to the ML risk score. The arrows represent the influence of each covariate on the overall prediction; either decreasing (blue) or increasing (red) the risk of future events. The combination of all covariates’ influence provides the final ML risk score. Subject (A) has a low ML risk score (0.0105), while subject (B) has a high ML risk score (0.2206). The blue and red colors provide the separation between low and high ML risk as determined by Youden’s index. The gray dashed lines represent the overall prevalence of events in the population (~4%). Reproduced with permission from Commandeur et al. (97).

Doubts may also exist among medical professionals over the potential replacement of their roles by increasing automation. However, AI should be a change that is embraced by clinicians, viewed as a companion physician aid which works in an interactive manner to streamline healthcare and facilitate precision medicine. The concept of “AI augmentation” is one in which cognitive technology enhances human intelligence rather than replacing it. It will be important to train the new generation of cardiac imaging specialists regarding the concepts and applicability of AI, and how to function efficiently alongside this technology.

Moreover, although the overall statistical performance of AI may be higher than that of physicians, there will always be specific, complex, or rare individual patient cases where an expert clinician could provide a better answer. Thus, the concept of using AI in medicine in should be as a decision support system, with the final action being from physicians.

5. EXPERT OPINION

Cotemporary progress and studies in AI and cardiovascular imaging have been driven by several forces. First, rapid advances in imaging technology, EHR, and mobile solutions have made big data encompassing the heterogeneity of patient and disease features available. Second is the development of new and sophisticated AI algorithms and exploratory methods to analyze high-dimensional data. Third is hardware advances such as graphics processing units and other digital accelerators. Fourth, the emergence of cloud-based computing and open-source AI software packages have provided low-cost and portable solutions to complicated data processing. Cardiovascular medicine is primed for scalable AI applications which can interpret more imaging data in greater depth than ever before, via automated algorithms and advanced data analysis techniques. This will enable novel insights into disease genotypes and phenotypes and enhancing outcome prediction.

As detailed in this paper, applications of AI can greatly improve the efficiency of noninvasive cardiac imaging modalities, by facilitating image acquisition, automating the processes of image segmentation and quantification, and assisting physician interpretation. The integration of clinical and imaging data using AI models has been shown to improve risk stratification over conventional methods. Further, radiomic analysis is an exciting new field which quantifies spatial and textural features from images that are difficult to discern with the human eye, and utilizes ML approaches to identify novel imaging biomarkers from big data.

Despite the potential pitfalls, the incorporation of AI into cardiology is not a change that clinicians should fear, but rather, one that should be embraced. Many technology companies, such as IBM, Google, and Apple, are investing heavily in health care analytics. Furthermore, both the American Heart Association and American College of Cardiology have established precision medicine and digital innovation platforms to develop and implement AI technologies to improve cardiovascular care. AI-augmented medical systems will serve to streamline workflow and provide more reproducible and objective quantitative results which can inform clinical decisions. Physicians will be able to focus on tasks best performed by human intelligence without being distracted by the tedium of many tasks (such as manual measurement of imaging parameters and interacting with EHRs) which can be fully automated. This may lead to higher physician job satisfaction by avoiding data fatigue; lower healthcare costs through the reduction in response time to critical data and avoiding unnecessary hospital admissions; and improved quality of care by providing prompt, personalized treatment.

4.1. FIVE-YEAR VIEW

In the near future, one can envisage AI working in the background of cardiac image analysis software and routine clinical reporting, automatically collecting data and enabling real-time diagnosis prediction and risk score computation. Over the next 5 years, AI algorithms and the level of automation for cardiac image acquisition and analysis will advance significantly. Greater standardization of image acquisition protocols and EHR documentation will enhance the quality of data used for AI input. Increasing collaboration between research institutions, industries, and healthcare providers may facilitate improved data sharing. While AI advances rely on the availability of standardized imaging, they can also provide guidance on the pathway to standardization. Further, AI may play a role in generating hypotheses and intelligent clinical trial design. This relates to the next frontier of AI applications in healthcare, in which AI may move beyond pattern detection and towards discovery of the underlying causal mechanisms.

Risk stratification will shift from the paradigm of simplified, population-based scoring systems to objective and personalized AI-based metrics incorporating a vast number of clinical and imaging variables. Physiological and disease marker data from wearable devices and remote digital sensors could also be processed and analyzed in real-time, together with image data, to provide immediately actionable insights or flag patients at risk of impending adverse health events. Ultimately, the most important AI application in cardiovascular medicine may be for the selection of patient therapy, whereby the algorithms utilize all available data to objectively quantify the potential benefit to an individual. Such end-to-end ML applications would truly enable personalized delivery of precision medicine.

ARTICLE HIGHLIGHTS.

  • Artificial intelligence is being increasingly used to analyze “big data” generated by cardiovascular imaging

  • Machine learning and deep learning algorithms can automate image acquisition and reconstruction, segmentation, measurement, and interpretation

  • Integration of clinical and imaging data using machine learning risk scores provides personalized outcome prediction, enabling the practice of precision cardiovascular medicine

  • Radiomics is an exciting field of image quantification which enables characterization of features beyond those visible to the human eye

  • In the near future, artificial intelligence may function as a precision medicine tool which aids physicians in clinical decision making

Acknowledgments

Funding

This paper was funded in part by a grant from the National Heart, Lung, and Blood Institute [1R01HL133616].

Footnotes

Declaration of Interest

The authors have no other relevant affiliations or financial involvement with any organization or entity with a financial interest in or financial conflict with the subject matter or materials discussed in the manuscript apart from those disclosed.

Reviewer Disclosures

Peer reviewers on this manuscript have no relevant financial or other relationships to disclose.

REFERENCES

  • 1.Russell S, Norvig P. Artificial Intelligence: A Modern Approach: Prentice Hall Press, 2009. [Google Scholar]
  • 2.TURING AM. I.—COMPUTING MACHINERY AND INTELLIGENCE. Mind 1950;LIX:433–460. [Google Scholar]
  • 3.CB Insights Research. Healthcare remains the hottest AI category for deals. 2017. Available from: https://www.cbinsights.com/research/artificial-intelligence-healthcare-startups-investors/.
  • 4.De Mauro A A formal definition of Big Data based on its essential features. Library Review 2016;65:122–135. [Google Scholar]
  • 5.Petersen SE, Matthews PM, Bamberg F et al. Imaging in population science: cardiovascular magnetic resonance in 100,000 participants of UK Biobank - rationale, challenges and approaches. Journal of Cardiovascular Magnetic Resonance 2013;15:46. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 6.Fonseca CG, Backhaus M, Bluemke DA et al. The Cardiac Atlas Project--an imaging database for computational modeling and statistical atlases of the heart. Bioinformatics 2011;27:2288–95. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 7.Deo RC. Machine Learning in Medicine. Circulation 2015;132:1920–1930. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 8.Dey D, Slomka PJ, Leeson P et al. Artificial Intelligence in Cardiovascular Imaging: JACC State-of-the-Art Review. J Am Coll Cardiol 2019;73:1317–1335. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 9.Johnson KW, Torres Soto J, Glicksberg BS et al. Artificial Intelligence in Cardiology. Journal of the American College of Cardiology 2018;71:2668. [DOI] [PubMed] [Google Scholar]
  • 10.Litjens G, Ciompi F, Wolterink JM et al. State-of-the-Art Deep Learning in Cardiovascular Image Analysis. JACC Cardiovasc Imaging 2019;12:1549–1565. [DOI] [PubMed] [Google Scholar]
  • 11.Gulshan V, Peng L, Coram M et al. Development and Validation of a Deep Learning Algorithm for Detection of Diabetic Retinopathy in Retinal Fundus Photographs. JAMA 2016;316:2402–2410. [DOI] [PubMed] [Google Scholar]
  • 12.Esteva A, Kuprel B, Novoa RA et al. Dermatologist-level classification of skin cancer with deep neural networks. Nature 2017;542:115–118. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 13.Neskovic AN, Skinner H, Price S et al. Focus cardiac ultrasound core curriculum and core syllabus of the European Association of Cardiovascular Imaging. European Heart Journal - Cardiovascular Imaging 2018;19:475–481. [DOI] [PubMed] [Google Scholar]
  • 14.Alsharqi M, Woodward WJ, Mumith JA, Markham DC, Upton R, Leeson P. Artificial intelligence and echocardiography. Echo Res Pract 2018;5:R115–r125. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 15.Gao X, Li W, Loomes M, Wang L. A fused deep learning architecture for viewpoint classification of echocardiography. Information Fusion 2016;36. [Google Scholar]
  • 16.Hayes C, Daniel D, Lu X, Jolly M-P, Schmidt M. Fully automatic planning of the long-axis views of the heart. Journal of Cardiovascular Magnetic Resonance 2013;15:O54. [Google Scholar]
  • 17.Blansit K, Retson T, Masutani E, Bahrami N, Hsiao A. Deep Learning–based Prescription of Cardiac MRI Planes. Radiology: Artificial Intelligence 2019;1:e180069. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 18.Lorch B, Vaillant G, Baumgartner C, Bai W, Rueckert D, Maier A. Automated Detection of Motion Artefacts in MR Imaging Using Decision Forests. Journal of Medical Engineering 2017;2017:9. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 19.Hauptmann A, Arridge S, Lucka F, Muthurangu V, Steeden JA. Real-time cardiovascular MR with spatio-temporal artifact suppression using deep learning-proof of concept in congenital heart disease. Magn Reson Med 2019;81:1143–1156. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 20.Tsao J, Boesiger P, Pruessmann KP. k-t BLAST and k-t SENSE: Dynamic MRI with high frame rate exploiting spatiotemporal correlations. Magn Reson Med 2003;50:1031–1042. [DOI] [PubMed] [Google Scholar]
  • 21.Jung H, Ye JC, Kim EY. Improved k-t BLAST and k-t SENSE using FOCUSS. Phys Med Biol 2007;52:3201–26. [DOI] [PubMed] [Google Scholar]
  • 22.Qin C, Schlemper J, Caballero J, Price AN, Hajnal JV, Rueckert D. Convolutional Recurrent Neural Networks for Dynamic MR Image Reconstruction. IEEE Transactions on Medical Imaging 2019;38:280–290. [DOI] [PubMed] [Google Scholar]
  • 23.Tavakoli V, Amini AA. A survey of shaped-based registration and segmentation techniques for cardiac images. Computer Vision and Image Understanding 2013;117:966–989. [Google Scholar]
  • 24.Belous G, Busch A, Rowlands D. Segmentation of the Left Ventricle from Ultrasound Using Random Forest with Active Shape Model. 2013 1st International Conference on Artificial Intelligence, Modelling and Simulation, 2013:315–319. [Google Scholar]
  • 25.Leclerc S, Grenier T, Espinosa F, Bernard O. A fully automatic and multi-structural segmentation of the left ventricle and the myocardium on highly heterogeneous 2D echocardiographic data. 2017 IEEE International Ultrasonics Symposium (IUS), 2017:1–1. [Google Scholar]
  • 26.Leclerc S, Smistad E, Pedrosa J et al. Deep Learning for Segmentation Using an Open Large-Scale Dataset in 2D Echocardiography. IEEE Trans Med Imaging 2019;38:2198–2210. [DOI] [PubMed] [Google Scholar]
  • 27.Dong S, Luo G, Wang K et al. VoxelAtlasGAN: 3D Left Ventricle Segmentation on Echocardiography with Atlas Guided Generation and Voxel-to-voxel Discrimination, 2018.
  • 28.Dong S, Luo G, Sun G, Wang K, Zhang H. A Left Ventricular Segmentation Method on 3D Echocardiography Using Deep Learning and Snake, 2016.
  • 29.Comaniciu D, Zhou X, Krishnan S. Robust Real-Time Myocardial Border Tracking for Echocardiography: An Information Fusion Approach. IEEE transactions on medical imaging 2004;23:849–60. [DOI] [PubMed] [Google Scholar]
  • 30.Suinesiaputra A, Bluemke DA, Cowan BR et al. Quantification of LV function and mass by cardiovascular magnetic resonance: multi-center variability and consensus contours. Journal of Cardiovascular Magnetic Resonance 2015;17:63. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 31.Bernard O, Lalande A, Zotti C et al. Deep Learning Techniques for Automatic MRI Cardiac Multi-Structures Segmentation and Diagnosis: Is the Problem Solved? IEEE Transactions on Medical Imaging 2018;37:2514–2525. [DOI] [PubMed] [Google Scholar]
  • 32.Shelhamer E, Long J, Darrell T. Fully Convolutional Networks for Semantic Segmentation. IEEE Transactions on Pattern Analysis and Machine Intelligence 2016;39:1–1. [DOI] [PubMed] [Google Scholar]
  • 33.Savioli N, Silva Vieira M, Lamata P, Montana G. Automated Segmentation on the Entire Cardiac Cycle Using a Deep Learning Work - Flow, 2018.
  • 34.Yue Q, Luo X, Ye Q, Xu L, Zhuang X. Cardiac Segmentation from LGE MRI Using Deep Neural Network Incorporating Shape and Spatial Priors, 2019. [Google Scholar]
  • 35.Bai W, Sinclair M, Tarroni G et al. Automated cardiovascular magnetic resonance image analysis with fully convolutional networks. J Cardiovasc Magn Reson 2018;20:65. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 36.Oktay O, Ferrante E, Kamnitsas K et al. Anatomically Constrained Neural Networks (ACNNs): Application to Cardiac Image Enhancement and Segmentation. IEEE Transactions on Medical Imaging 2018;37:384–395. [DOI] [PubMed] [Google Scholar]
  • 37.Sander J, De Vos B, Wolterink J, Išgum I. Towards increased trustworthiness of deep learning segmentation methods on cardiac MRI, 2018.
  • 38.Zheng Y, Barbu A, Georgescu B, Scheuering M, Comaniciu D. Four-Chamber Heart Modeling and Automatic Segmentation for 3-D Cardiac CT Volumes Using Marginal Space Learning and Steerable Features. IEEE Transactions on Medical Imaging 2008;27:1668–1681. [DOI] [PubMed] [Google Scholar]
  • 39.Xu Z, Wu Z, Feng J. CFUN: Combining Faster R-CNN and U-net Network for Efficient Whole Heart Segmentation, 2018.
  • 40.Singh G, Al’Aref S, Maliakal G et al. DEEP LEARNING BASED AUTOMATIC SEGMENTATION OF CARDIAC COMPUTED TOMOGRAPHY. Journal of the American College of Cardiology 2019;73:1643.30947916 [Google Scholar]
  • 41.Zreik M, Leiner T, De Vos B, van Hamersvelt R, Viergever M, Isgum I. Automatic segmentation of the left ventricle in cardiac CT angiography using convolutional neural networks, 2016. [DOI] [PubMed]
  • 42.Bruns S, Wolterink J, van Hamersvelt R, Zreik M, Leiner T, Išgum I. Improving myocardium segmentation in cardiac CT angiography using spectral information: SPIE, 2019. [Google Scholar]
  • 43.Wolterink JM, Leiner T, Išgum I. Graph Convolutional Networks for Coronary Artery Segmentation in Cardiac CT Angiography. Cham: Springer International Publishing, 2019. [Google Scholar]
  • 44.Gülsün M, Funka-Lea G, Sharma P, Rapaka S, Zheng Y. Coronary Centerline Extraction via Optimal Flow Paths and CNN Path Pruning, 2016.
  • 45.Guo Z, Bai J, Lu Y et al. DeepCenterline: a Multi-task Fully Convolutional Network for Centerline Extraction. CoRR 2019;abs/1903.10481. [Google Scholar]
  • 46.Grbic S, Ionasec R, Vitanovski D et al. Complete valvular heart apparatus model from 4D cardiac CT. Medical Image Analysis 2012;16:1003–1014. [DOI] [PubMed] [Google Scholar]
  • 47.Cannesson M, Tanabe M, Suffoletto MS et al. A Novel Two-Dimensional Echocardiographic Image Analysis System Using Artificial Intelligence-Learned Pattern Recognition for Rapid Automated Ejection Fraction. Journal of the American College of Cardiology 2007;49:217–226. [DOI] [PubMed] [Google Scholar]
  • 48.Madani A, Ong JR, Tibrewal A, Mofrad MRK. Deep echocardiography: data-efficient supervised and semi-supervised deep learning towards automated diagnosis of cardiac disease. npj Digital Medicine 2018;1:59. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 49.Chykeyuk K, Clifton DA, Noble JA. Feature extraction and wall motion classification of 2D stress echocardiography with relevance vector machines. 2011 IEEE International Symposium on Biomedical Imaging: From Nano to Macro, 2011:677–680. [Google Scholar]
  • 50.Sanchez-Martinez S, Duchateau N, Erdei T, Fraser AG, Bijnens BH, Piella G. Characterization of myocardial motion patterns by unsupervised multiple kernel learning. Med Image Anal 2017;35:70–82. [DOI] [PubMed] [Google Scholar]
  • 51.Knackstedt C, Bekkers SC, Schummers G et al. Fully Automated Versus Standard Tracking of Left Ventricular Ejection Fraction and Longitudinal Strain: The FAST-EFs Multicenter Study. J Am Coll Cardiol 2015;66:1456–66. [DOI] [PubMed] [Google Scholar]
  • 52.Zhou SK, Guo F, Park J et al. A probabilistic, hierarchical, and discriminant framework for rapid and accurate detection of deformable anatomic structure, 2007.
  • 53.Moghaddasi H, Nourian S. Automatic assessment of mitral regurgitation severity based on extensive textural features on 2D echocardiography videos. Computers in Biology and Medicine 2016;73:47–55. [DOI] [PubMed] [Google Scholar]
  • 54.Lang RM, Badano LP, Mor-Avi V et al. Recommendations for cardiac chamber quantification by echocardiography in adults: an update from the American Society of Echocardiography and the European Association of Cardiovascular Imaging. J Am Soc Echocardiogr 2015;28:1–39.e14. [DOI] [PubMed] [Google Scholar]
  • 55.Tsang W, Salgo IS, Medvedofsky D et al. Transthoracic 3D Echocardiographic Left Heart Chamber Quantification Using an Automated Adaptive Analytics Algorithm. JACC: Cardiovascular Imaging 2016;9:769–782. [DOI] [PubMed] [Google Scholar]
  • 56.Narang A, Mor-Avi V, Prado A et al. Machine learning based automated dynamic quantification of left heart chamber volumes. European Heart Journal - Cardiovascular Imaging 2018;20:541–549. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 57.Medvedofsky D, Mor-Avi V, Amzulescu M et al. Three-dimensional echocardiographic quantification of the left-heart chambers using an automated adaptive analytics algorithm: multicentre validation study. Eur Heart J Cardiovasc Imaging 2018;19:47–58. [DOI] [PubMed] [Google Scholar]
  • 58.Medvedofsky D, Mor-Avi V, Byku I et al. Three-Dimensional Echocardiographic Automated Quantification of Left Heart Chamber Volumes Using an Adaptive Analytics Algorithm: Feasibility and Impact of Image Quality in Nonselected Patients. Journal of the American Society of Echocardiography : official publication of the American Society of Echocardiography 2017;30:879–885. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 59.Volpato V, Mor-Avi V, Narang A et al. Automated, machine learning-based, 3D echocardiographic quantification of left ventricular mass. Echocardiography 2019;36:312–319. [DOI] [PubMed] [Google Scholar]
  • 60.Genovese D, Rashedi N, Weinert L et al. Machine Learning-Based Three-Dimensional Echocardiographic Quantification of Right Ventricular Size and Function: Validation Against Cardiac Magnetic Resonance. J Am Soc Echocardiogr 2019;32:969–977. [DOI] [PubMed] [Google Scholar]
  • 61.Ngo TA, Lu Z, Carneiro G. Combining deep learning and level set for the automated segmentation of the left ventricle of the heart from cardiac cine magnetic resonance. Medical Image Analysis 2017;35:159–171. [DOI] [PubMed] [Google Scholar]
  • 62.Marino M, Veronesi F, Corsi C. Fully automated assessment of left ventricular volumes and mass from cardiac magnetic resonance images. Conf Proc IEEE Eng Med Biol Soc 2014;2014:1079–82. [DOI] [PubMed] [Google Scholar]
  • 63.Suinesiaputra A, Sanghvi MM, Aung N et al. Fully-automated left ventricular mass and volume MRI analysis in the UK Biobank population cohort: evaluation of initial results. The international journal of cardiovascular imaging 2018;34:281–291. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 64.Avendi MR, Kheradvar A, Jafarkhani H. Automatic segmentation of the right ventricle from cardiac MRI using a learning-based approach. Magn Reson Med 2017;78:2439–2448. [DOI] [PubMed] [Google Scholar]
  • 65.Petitjean C, Zuluaga MA, Bai W et al. Right ventricle segmentation from cardiac MRI: A collation study. Medical Image Analysis 2015;19:187–202. [DOI] [PubMed] [Google Scholar]
  • 66.Zabihollahy F, White JA, Ukwatta E. Convolutional neural network-based approach for segmentation of left ventricle myocardial scar from 3D late gadolinium enhancement MR images. Medical Physics 2019;46:1740–1751. [DOI] [PubMed] [Google Scholar]
  • 67.Fahmy AS, Neisius U, Chan RH et al. Three-dimensional Deep Convolutional Neural Networks for Automated Myocardial Scar Quantification in Hypertrophic Cardiomyopathy: A Multicenter Multivendor Study. Radiology 2019:190737. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 68.Yang G, Zhuang X, Khan H et al. Fully automatic segmentation and objective assessment of atrial scars for long-standing persistent atrial fibrillation patients using late gadolinium-enhanced MRI. Medical physics 2018;45:1562–1576. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 69.Tao Q, Ipek EG, Shahzad R, Berendsen FF, Nazarian S, van der Geest RJ. Fully automatic segmentation of left atrium and pulmonary veins in late gadolinium-enhanced MRI: Towards objective atrial scar assessment. Journal of Magnetic Resonance Imaging 2016;44:346–354. [DOI] [PubMed] [Google Scholar]
  • 70.Fahmy AS, El-Rewaidy H, Nezafat M, Nakamori S, Nezafat R. Automated analysis of cardiovascular magnetic resonance myocardial native T(1) mapping images using fully convolutional neural networks. Journal of cardiovascular magnetic resonance : official journal of the Society for Cardiovascular Magnetic Resonance 2019;21:7–7. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 71.Budoff MJ, Shaw LJ, Liu ST et al. Long-term prognosis associated with coronary calcification: observations from a registry of 25,253 patients. J Am Coll Cardiol 2007;49:1860–70. [DOI] [PubMed] [Google Scholar]
  • 72.Isgum I, Prokop M, Niemeijer M, Viergever MA, van Ginneken B. Automatic coronary calcium scoring in low-dose chest computed tomography. IEEE Trans Med Imaging 2012;31:2322–34. [DOI] [PubMed] [Google Scholar]
  • 73.Lessmann N, Ginneken B, Zreik M et al. Automatic Calcium Scoring in Low-Dose Chest CT Using Deep Neural Networks With Dilated Convolutions. IEEE Transactions on Medical Imaging 2017;PP. [DOI] [PubMed] [Google Scholar]
  • 74.Wolterink JM, Leiner T, Takx RA, Viergever MA, Isgum I. Automatic Coronary Calcium Scoring in Non-Contrast-Enhanced ECG-Triggered Cardiac CT With Ambiguity Detection. IEEE Trans Med Imaging 2015;34:1867–78. [DOI] [PubMed] [Google Scholar]
  • 75.Martin SS, van Assen M, Rapaka S et al. Evaluation of a Deep Learning–Based Automated CT Coronary Artery Calcium Scoring Algorithm. JACC: Cardiovascular Imaging 2019:3233. [DOI] [PubMed] [Google Scholar]
  • 76.Wolterink JM, Leiner T, de Vos BD, van Hamersvelt RW, Viergever MA, Isgum I. Automatic coronary artery calcium scoring in cardiac CT angiography using paired convolutional neural networks. Med Image Anal 2016;34:123–136. [DOI] [PubMed] [Google Scholar]
  • 77.Kelm BM, Mittal S, Zheng Y et al. Detection, grading and classification of coronary stenoses in computed tomography angiography. Med Image Comput Comput Assist Interv 2011;14:25–32. [DOI] [PubMed] [Google Scholar]
  • 78.Zreik M, van Hamersvelt RW, Wolterink JM, Leiner T, Viergever MA, Isgum I. A Recurrent CNN for Automatic Detection and Classification of Coronary Artery Plaque and Stenosis in Coronary CT Angiography. IEEE Trans Med Imaging 2019;38:1588–1598. [DOI] [PubMed] [Google Scholar]
  • 79.Itu L, Rapaka S, Passerini T et al. A machine-learning approach for computation of fractional flow reserve from coronary computed tomography. J Appl Physiol (1985) 2016;121:42–52. [DOI] [PubMed] [Google Scholar]
  • 80.Coenen A, Kim YH, Kruk M et al. Diagnostic Accuracy of a Machine-Learning Approach to Coronary Computed Tomographic Angiography-Based Fractional Flow Reserve: Result From the MACHINE Consortium. Circ Cardiovasc Imaging 2018;11:e007217. [DOI] [PubMed] [Google Scholar]
  • 81.Zreik M, van Hamersvelt RW, Khalili N et al. Deep learning analysis of coronary arteries in cardiac CT angiography for detection of patients requiring invasive coronary angiography. IEEE Trans Med Imaging 2019. [DOI] [PubMed] [Google Scholar]
  • 82.Mazurek T, Zhang L, Zalewski A et al. Human epicardial adipose tissue is a source of inflammatory mediators. Circulation 2003;108:2460–6. [DOI] [PubMed] [Google Scholar]
  • 83.Cheng VY, Dey D, Tamarappoo B et al. Pericardial fat burden on ECG-gated noncontrast CT in asymptomatic patients who subsequently experience adverse cardiovascular events. JACC Cardiovasc Imaging 2010;3:352–60. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 84.Commandeur F, Goeller M, Betancur J et al. Deep Learning for Quantification of Epicardial and Thoracic Adipose Tissue From Non-Contrast CT. IEEE Transactions on Medical Imaging 2018;37:1835–1846. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 85.Commandeur F, Goeller M, Razipour A et al. Fully Automated CT Quantification of Epicardial Adipose Tissue by Deep Learning: A Multicenter Study. Radiology: Artificial Intelligence 2019;1:e190045. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 86.Taylor AG, Mielke C, Mongan J. Automated detection of moderate and large pneumothorax on frontal chest X-rays using deep convolutional neural networks: A retrospective study. PLoS Med 2018;15:e1002697–e1002697. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 87.Litjens G, Sánchez CI, Timofeeva N et al. Deep learning as a tool for increased accuracy and efficiency of histopathological diagnosis. Scientific Reports 2016;6:26286. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 88.Madani A, Arnaout R, Mofrad M, Arnaout R. Fast and accurate view classification of echocardiograms using deep learning. npj Digital Medicine 2018;1:6. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 89.Zhang J, Gajjala S, Agrawal P et al. Fully Automated Echocardiogram Interpretation in Clinical Practice. Circulation 2018;138:1623–1635. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 90.Narula S, Shameer K, Salem Omar AM, Dudley JT, Sengupta PP. Machine-Learning Algorithms to Automate Morphological and Functional Assessments in 2D Echocardiography. J Am Coll Cardiol 2016;68:2287–2295. [DOI] [PubMed] [Google Scholar]
  • 91.Lancaster MC, Salem Omar AM, Narula S, Kulkarni H, Narula J, Sengupta PP. Phenotypic Clustering of Left Ventricular Diastolic Function Parameters. JACC: Cardiovascular Imaging 2019;12:1149. [DOI] [PubMed] [Google Scholar]
  • 92.Ambale-Venkatesh B, Yang X, Wu CO et al. Cardiovascular Event Prediction by Machine Learning: The Multi-Ethnic Study of Atherosclerosis. Circulation research 2017;121:1092–1101. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 93.Kotu LP, Engan K, Borhani R et al. Cardiac magnetic resonance image-based classification of the risk of arrhythmias in post-myocardial infarction patients. Artificial intelligence in medicine 2015;64:205–15. [DOI] [PubMed] [Google Scholar]
  • 94.Bello GA, Dawes TJW, Duan J et al. Deep-learning cardiac motion analysis for human survival prediction. Nature Machine Intelligence 2019;1:95–104. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 95.Dey D, Gaur S, Ovrehus KA et al. Integrated prediction of lesion-specific ischaemia from quantitative coronary CT angiography using machine learning: a multicentre study. Eur Radiol 2018;28:2655–2664. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 96.Motwani M, Dey D, Berman DS et al. Machine learning for prediction of all-cause mortality in patients with suspected coronary artery disease: a 5-year multicentre prospective registry analysis. Eur Heart J 2017;38:500–507. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 97.Commandeur F, Slomka PJ, Goeller M et al. Machine learning to predict the long-term risk of myocardial infarction and cardiac death based on clinical risk, coronary calcium, and epicardial adipose tissue: a prospective study. Cardiovascular Research 2019. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 98.Arsanjani R, Xu Y, Hayes SW et al. Comparison of fully automated computer analysis and visual scoring for detection of coronary artery disease from myocardial perfusion SPECT in a large population. Journal of nuclear medicine : official publication, Society of Nuclear Medicine 2013;54:221–8. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 99.Arsanjani R, Xu Y, Dey D et al. Improved accuracy of myocardial perfusion SPECT for detection of coronary artery disease by machine learning in a large population. Journal of nuclear cardiology : official publication of the American Society of Nuclear Cardiology 2013;20:553–562. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 100.Betancur J, Commandeur F, Motlagh M et al. Deep Learning for Prediction of Obstructive Disease From Fast Myocardial Perfusion SPECT: A Multicenter Study. JACC Cardiovasc Imaging 2018;11:1654–1663. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 101.Arsanjani R, Dey D, Khachatryan T et al. Prediction of revascularization after myocardial perfusion SPECT by machine learning in a large population. J Nucl Cardiol 2015;22:877–84. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 102.Betancur J, Otaki Y, Motwani M et al. Prognostic Value of Combined Clinical and Myocardial Perfusion Imaging Data Using Machine Learning. JACC Cardiovascular imaging 2018;11:1000–1009. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 103.Kolossvary M, Kellermayer M, Merkely B, Maurovich-Horvat P. Cardiac Computed Tomography Radiomics: A Comprehensive Review on Radiomic Techniques. J Thorac Imaging 2018;33:26–34. [DOI] [PubMed] [Google Scholar]
  • 104.Gillies RJ, Kinahan PE, Hricak H. Radiomics: Images Are More than Pictures, They Are Data. Radiology 2016;278:563–577. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 105.Parmar C, Grossmann P, Bussink J, Lambin P, Aerts H. Machine Learning methods for Quantitative Radiomic Biomarkers. Sci Rep 2015;5:13087. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 106.Engan K, Eftestol T, Orn S, Kvaloy JT, Woie L. Exploratory data analysis of image texture and statistical features on myocardium and infarction areas in cardiac magnetic resonance images. Conf Proc IEEE Eng Med Biol Soc 2010;2010:5728–31. [DOI] [PubMed] [Google Scholar]
  • 107.Kotu LP, Engan K, Skretting K et al. Probability mapping of scarred myocardium using texture and intensity features in CMR images. BioMedical Engineering OnLine 2013;12:91. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 108.Larroza A, Materka A, Lopez-Lereu MP, Monmeneu JV, Bodi V, Moratal D. Differentiation between acute and chronic myocardial infarction by means of texture analysis of late gadolinium enhancement and cine cardiac magnetic resonance imaging. Eur J Radiol 2017;92:78–83. [DOI] [PubMed] [Google Scholar]
  • 109.Larroza A, Lopez-Lereu MP, Monmeneu JV et al. Texture analysis of cardiac cine magnetic resonance imaging to detect nonviable segments in patients with chronic myocardial infarction. Med Phys 2018;45:1471–1480. [DOI] [PubMed] [Google Scholar]
  • 110.Schofield R, Ganeshan B, Kozor R et al. CMR myocardial texture analysis tracks different etiologies of left ventricular hypertrophy. Journal of Cardiovascular Magnetic Resonance 2016;18:O82. [Google Scholar]
  • 111.Thornhill RE, Cocker M, Dwivedi G et al. Quantitative texture features as objective metrics of enhancement heterogeneity in hypertrophic cardiomyopathy. Journal of Cardiovascular Magnetic Resonance 2014;16:P351. [Google Scholar]
  • 112.Cheng S, Fang M, Cui C et al. LGE-CMR-derived texture features reflect poor prognosis in hypertrophic cardiomyopathy patients with systolic dysfunction: preliminary results. Eur Radiol 2018;28:4615–4624. [DOI] [PubMed] [Google Scholar]
  • 113.Baeßler B, Schaarschmidt F, Dick A et al. Mapping tissue inhomogeneity in acute myocarditis: a novel analytical approach to quantitative myocardial edema imaging by T2-mapping. Journal of Cardiovascular Magnetic Resonance 2015;17:115. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 114.Baessler B, Luecke C, Lurz J et al. Cardiac MRI Texture Analysis of T1 and T2 Maps in Patients with Infarctlike Acute Myocarditis. Radiology 2018;289:357–365. [DOI] [PubMed] [Google Scholar]
  • 115.Maurovich-Horvat P, Ferencik M, Voros S, Merkely B, Hoffmann U. Comprehensive plaque assessment by coronary CT angiography. Nature Reviews Cardiology 2014;11:390–402. [DOI] [PubMed] [Google Scholar]
  • 116.Hell MM, Motwani M, Otaki Y et al. Quantitative global plaque characteristics from coronary computed tomography angiography for the prediction of future cardiac mortality during long-term follow-up. Eur Heart J Cardiovasc Imaging 2017;18:1331–1339. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 117.Kolossváry M, Karády J, Szilveszter B et al. Radiomic Features Are Superior to Conventional Quantitative Computed Tomographic Metrics to Identify Coronary Plaques With Napkin-Ring Sign. Circ Cardiovasc Imaging 2017;10:e006843–e006843. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 118.Kolossváry M, Park J, Bang J-I et al. Identification of invasive and radionuclide imaging markers of coronary plaque vulnerability using radiomic analysis of coronary computed tomography angiography. European heart journal cardiovascular Imaging 2019;20. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 119.Kolossváry M, Karády J, Kikuchi Y et al. Radiomics versus Visual and Histogram-based Assessment to Identify Atheromatous Lesions at Coronary CT Angiography: An ex Vivo Study. Radiology 2019;293:89–96. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 120.Nicol ED, Norgaard BL, Blanke P et al. The Future of Cardiovascular Computed Tomography: Advanced Analytics and Clinical Insights. JACC Cardiovasc Imaging 2019;12:1058–1072. [DOI] [PubMed] [Google Scholar]

RESOURCES