Abstract
Objective
The objective of this study was to develop a machine deep learning algorithm for endoleak detection and measurement of aneurysm diameter, area, and volume from computed tomography angiography (CTA).
Methods
Digital Imaging and Communications in Medicine files representing three-phase postoperative CTA images (N = 334) of 191 unique patients undergoing endovascular aneurysm repair for infrarenal abdominal aortic aneurysm (AAA) with a variety of commercial devices were used to train a deep learning pipeline across four tasks. The RetinaNet object-detection convolutional neural network (CNN) architecture was trained to predict bounding boxes around the axial CTA slices that were then stitched together in two dimensions into a smaller region containing the aneurysm. Multiclass endoleak detection and segmentation of the AAA, endograft, and endoleak were performed on this smaller region. Segmentations on a single randomly selected contrast from each scan included 33 full and 68 partial segmentations for endograft and AAA and 99 full segmentations for endoleak. A modified version of ResNet-50 CNN was used to detect endoleak on individual axial slices. A three-dimensional U-Net CNN model was trained on the task of dense three-dimensional segmentation and used to measure diameter and volume with a specially designed loss function. We made use of fivefold cross-validation to evaluate model performance for each step, splitting training and testing data at each fold, such that multiple scans from the same patient were preserved with the same fold. Algorithm predictions for endoleak were compared with the radiology report and with a subset of CTA images independently read by two vascular specialists.
Results
The localization portion of the network accurately predicted a region of interest containing the AAA in 99% of cases. The best model of binary endoleak detection obtained an area under the receiver operating characteristic curve of 0.94 ± 0.03 with an optimized accuracy of 0.89 ± 0.03 on a balanced data set. An introduced postprocessing algorithm for determining maximum diameter was used on both the predicted AAA segmentation and ground truth segmentation, predicting on average an absolute diameter error of 2.3 ± 2.0 mm by 1.4 ± 1.7 mm for each measurement, respectively. The algorithm measured AAA and endograft volume accurately (Dice coefficient, 0.95 ± 0.2) with an absolute volume error of 10.1 ± 9.1 mL. The algorithm measured endoleak volume less accurately, with a Dice score of 0.53 ± 0.21 and an average absolute volume error of 1.2 ± 1.9 mL.
Conclusions
This machine learning algorithm shows promise in augmenting a human's ability to interpret postoperative CTA images and may help improve surveillance after endovascular aneurysm repair. External validation on larger data sets and prospective study are required before the algorithm can be clinically applicable.
Keywords: Machine learning, Deep learning, Endoleak, Abdominal aortic aneurysm
Clinical Relevance
This manuscript describing the application of machine learning for endoleak has clinical relevance to endovascular abdominal aortic aneurysm follow-up. The techniques described herein may be more broadly applied to the diagnosis of aortic disease. In the future, vascular surgeons will benefit from integrating such artificial intelligence algorithms into their practice.
Article Highlights.
-
•
Type of Research: Basic science
-
•
Key Findings: A machine deep learning algorithm demonstrated acceptable accuracy in the detection of endoleak on computed tomography scans.
-
•
Take Home Message: This machine learning algorithm shows promise in augmenting a human's ability to interpret postoperative computed tomography angiography images and may help improve surveillance after endovascular aneurysm repair.
Endoleaks, a well-recognized consequence of endovascular aneurysm repair (EVAR), occur in up to 20% of patients.1 Whereas the clinical significance of various endoleak types has been debated, the presence of an endoleak is a prognostic marker for poor late outcomes, including abdominal aortic aneurysm (AAA) sac expansion, secondary interventions, and late rupture.2, 3, 4, 5 Surveillance imaging is required after EVAR, and although duplex ultrasound has surfaced as an alternative noninvasive imaging modality, three-phase computed tomography angiography (CTA) remains the “gold standard,” particularly for early imaging and surrounding reinterventions.1,6 Whereas CTA has good intraobserver and interobserver variability for aneurysm diameter, other parameters, such as diagnosis of endoleak and measurement of AAA volume, have variable accuracy and have received less attention in the literature.7,8 The diagnostic accuracy of diameter changes in the identification of AAA volume increase has been challenged with a report of good specificity but poor sensitivity.9
In recent years, machine deep learning techniques have been used in a variety of health care applications, particularly within the medical imaging field.10 Whereas success has been reported using segmentation techniques to measure AAA diameter and volume, none have applied sophisticated deep learning techniques to the automated diagnosis of endoleak coupled with these measures.11, 12, 13, 14, 15, 16 Our objective was to develop a deep learning algorithm for endoleak detection and AAA diameter and volume that can augment the human's ability to read CTA images after EVAR to reduce subjectivity and variability while increasing the accuracy of the diagnosis.
Methods
Digital Imaging and Communications in Medicine files representing CTA images (N = 334) of 191 unique, consecutive patients undergoing EVAR at the University of Vermont Medical Center from 2006 to March 2018 with commercially available devices were used to train a deep learning-based pipeline across varied tasks. Three-phase CTA with non-contrast-enhanced arterial and venous phases with 1.5-mm slice thickness were obtained as part of the established standard of care at periodic intervals after EVAR and deidentified by converting them into Neuroimaging Informatics Technology Initiative (NIfTI) file format. Throughout the study period, CTA scans were routinely obtained at 1 month and 1 year after EVAR. In the past 5 years, select patients were followed up by duplex ultrasound after the 1- or 2-year scan at the discretion of the attending surgeon. The mean time between EVAR and each CTA scan was 629 days. Although some patients' CTA data were used more than once, in such cases, the patient's imaging data were never split in a case in which the algorithm would be able to learn explicitly from the patient's earlier scan.
The algorithm (Endo-Detecto) was developed in stages to carry out four tasks: endoleak detection, maximum AAA diameter, AAA volume, and endoleak volume. The pipeline began with a localization network designed to predict bounding boxes around the AAA on all axial slices of the CTA scans using the RetinaNet, one-stage detector styled, convolutional neural network (CNN) architecture (Fig 1).17 Predicted two-dimensional bounding boxes were then stitched together to represent a smaller 128 × 128-voxel region of interest containing primarily the AAA. This smaller region was used as input for detection of endoleak and multiclass AAA segmentation. A ResNet-50 style CNN was trained at this stage to output axial slice by slice predictions for the presence of endoleak.18 Prediction generalization from slice by slice was conducted by assigning the maximum individual slice prediction made across both venous and arterial contrast phases to that set of scans. For the localization and binary endoleak detection tasks, 760 contrast phase scans were drawn from the available scans, which constituted all arterial and venous phase CTA scans with an endoleak as well as a random mix of arterial and venous phase scans from cases without endoleak with the pre-contrast scan used for every case. The 334 scans were evenly split by case and control and labeled as endoleak yes or no. Next, the classification threshold (ie, that a given prediction needs to be greater than in order to be labeled yes for endoleak) was optimized as the value that maximizes area under the curve receiver operating characteristics on the training set. During training, various data augmentation strategies, including random rotations and flips, were applied to reduce overfitting. In addition, various hyperparameters were investigated, making use ultimately of the following training techniques; snapshot ensembles >100 epochs with a starting cyclic learning rate of 0.01 along with the built-in Keras stochastic gradient descent optimizer were employed to improve predictive performance. We made use of fivefold cross-validation as a method of evaluating endoleak detection performance, splitting training and testing data at each fold by patient.
AAA-predicted bounding boxes were stitched together into a three-dimensional (3-D) region of interest. A 3D U-Net CNN, with residual connections, was trained on the task of segmenting AAA and endograft within the cropped 3D AAA volumes. As generating full dense segmentations is time intensive (∼1 hour per scan), the 3D U-Net architecture was modified with a specially designed multiclass Dice loss capable of accepting partial 3D segmentations according to the following formula:
where classes refer to the different input classes (AAA and endograft), seen refers to a binary mask indicating whether that voxel was seen while performing partial segmentation, and Truei and Predi refer to the ground truth label and predicted label for class i.
We performed manual aortic aneurysm dense segmentation on 101 scans (33 complete, 68 partial segmentation) to train the segmentation task where scans are defined as one contrast series. Partial segmentations are composed of three to five manually labeled slices within each view (axial, sagittal, coronal), requiring on average 10 minutes. Complete segmentations included labeling of every slice. For the diameter task, 168 contrast scans (both arterial and venous per CTA scan) were used because the non-contrast-enhanced scans were lower resolution. We further made use of the 33 fully segmented scans in reporting cross-validated network performance on the prediction of AAA and endograft volume. Minor postprocessing was applied on the outputted predictions from the 3D U-Net, automatically fixing outliers in predicted class on the basis of surrounding voxel classes. Another algorithm was then applied to extract maximal anterior-posterior diameters from outputted network predictions.
The gold standard for endoleak detection and maximum aneurysm diameter in the axial plane was the official radiology report, obtained from electronic medical records of each patient. In addition, a subset of 100 CTA images were independently read for endoleak and diameter by an interventional radiologist and a vascular surgeon (C.M., D.B.). Interobserver and human to machine AAA diameter measurement variability was evaluated by Bland-Altman analysis. Precision was tested by calculating the coefficient of repeatability, which represents the value below which the absolute difference between two repeated test results may be expected to lie with a probability of 95%.
The study followed the principles outlined in the Declaration of Helsinki. The University of Vermont Institutional Review Board has approved the research protocol with a waiver of informed consent.
Results
AAA localization
The number of scans varied for each patient, ranging from 1 to 12 over time, and is shown in Fig 2. The RetinaNet-based localization network had an accuracy of 98.7% in capturing the AAA within the region of interest on the CTA image. We base this estimation of accuracy on manual review and correction of 314 previously unseen scans that were supplied to the localization network. These scans were composed of 91,575 axial slices, of which 412 (0.4%) required minor manual operator revision, defined as small changes made to a bounding box or to a slice missed before or after the predicted aneurysm region. These revisions may be caught by automated padding. We observed only two predicted slices with a more significant bounding box error. A significant number of AAA predictions were missed altogether on only four full scans.
Binary endoleak classifier
As computed across fivefold cross-validation, the binary classification portion of the pipeline correctly identified the presence of an endoleak in 147 of 167 scans. Absence of endoleak was correctly reported in 151 of 167 scans. The resulting sensitivity and specificity for endoleak detection were 90% and 88%, respectively, with an accuracy of 89% (Fig 3). The positive and negative predictive values were 89% and 91%, respectively. The area under the receiver operating characteristic curves per validation fold were between 0.89 and 0.97, with an average of 0.94 ± 0.03 (Fig 4). The distribution of endoleaks was as follows: type I, n = 15; types I and II, n = 1; type II, n = 141; types II and III, n = 2 and 3; type III, n = 1; and indeterminate.
Segmentation
As determined by cross-validated performance on 33 fully segmented scans, the algorithm accurately segmented the AAA with a Dice coefficient of 91% ± 5% and intersection over union of 84% ± 9% (Table). The accuracy of endograft segmentation was higher with a Dice coefficient of 95% ± 3% and intersection over union of 90% ± 5%.
Table.
Category | Dice coefficient, % | Intersection over union, % | Absolute volume, mL | Volume, % change |
---|---|---|---|---|
AAA | 91 ± 5 | 84 ± 9 | 4.5 ± 3.4 | 5.6 ± 3 |
Endograft | 95 ± 3 | 90 ± 5 | 5.2 ± 6.7 | 4.7 ± 6 |
AAA and endograft | 95 ± 2 | 91 ± 4 | 6.3 ± 5.6 | 3.3 ± 3 |
AAA, Abdominal aortic aneurysm.
AAA diameter
We compared the deep learning algorithm prediction of maximum diameter in two directions with 84 official radiology reports that listed both maximal AAA diameters and with the average of two expert readers. In comparing the average of two readers with the deep learning algorithm, the coefficient of repeatability was 13.72 (Fig 5, A). In comparing the radiology report with the deep learning algorithm, the coefficient of repeatability was 15.06 (Fig 5, B). Last, we compared the 33 fully segmented scans between the algorithm for extracting maximal diameter on human ground truth and the same algorithm on predicted segmentation, with a coefficient of repeatability of 5.42 (Fig 5, C).
AAA volume
We computed 3D segmentation network performance on the 33 fully segmented scans with fivefold cross-validation, in which all partial segmentations were included within the training set within all folds. The network obtained a Dice coefficient of 91% ± 5% for AAA volume with a 4.5 ± 3.4 mm3 absolute volume error. The network obtained a Dice coefficient of 91% ± 5% for predicting endograft volume with a 5.2 ± 6.7 mm3 absolute volume error.
Endoleak volume
The algorithm's ability to measure endoleak volume was less accurate, with Dice coefficient of 0.53 ± 0.2 and an average error of 1.2 ± 1.9 mL.
Discussion
We report the novel application of three CNNs for the detection of endoleak on CTA images after EVAR. CNNs are a subclass of deep neural networks most commonly applied to the analysis of images. CNNs were designed to resemble the connectivity of neurons as found in the animal visual cortex, in which individual neurons respond to stimuli within one region of the visual field and different neurons overlap to cover the entire area. Deep learning approaches have overwhelmingly outperformed state of the art in many traditional computer vision tasks, such as image classification and object detection.19 Specific deep network architectures, like the CNN, have been used for classification and segmentation with great success, obtaining state-of-the-art results in classic vision problems. These deep neural network configurations have been shown to learn useful distributed feature representations for many complex, high-dimensional data sets and to construct sophisticated domain-specific features without relying on precise human-crafted input representations.20,21 The Endo-Detecto algorithm accurately diagnosed the presence or absence of an endoleak on post-EVAR CTA images, reaching the level of a human reader. Whereas CTA has high accuracy for the diagnosis of endoleak with a reported sensitivity of 83% and specificity approaching 100%, relatively little attention has been devoted to the physician variability in endoleak diagnosis.7,22 One small study reported sensitivities of 81% to 85% in the detection of type II endoleak using two untrained observers.8 The algorithm readily identified the region of the AAA and segmented the aneurysm from the device reliably with minimal human optimization. The algorithm measured AAA diameter comparably to both the radiology report and two independent readers. Unlike radiology reports, which sometimes omitted diameter values, the algorithm automatically reports two diameter measurements and can be set to report as many as needed. The variability in AAA volume was within the 5% range generally acceptable in clinical practice. The ability to measure endoleak volume was not sufficiently accurate and will require further training and optimization.
A machine learning algorithmic approach to the interpretation of computed tomography (CT) scans after EVAR has several possible clinical applications. First, several studies have advocated for the addition of AAA volume to the clinical follow-up and decision-making for endoleak treatment.23 Relatively small changes in diameter can be associated with substantial changes in volume.24 Second, patients are subjected to many CT scans, both for lifelong postoperative surveillance and for other indications. Review of prior imaging for comparison purposes can be expedited using a machine learning algorithm, thus improving the speed, ease, and rigor of follow-up. Comparisons of endoleak, AAA diameter, and AAA volume can be quickly tabulated for reference. Third, the volume of type II endoleak and source and diameter of the feeding artery have been reported to have prognostic value.25, 26, 27, 28 However, parameters such as the volume of endoleak are currently not readily available from CT scans. In an effort to reduce radiation exposure and intravenous administration of iodinated contrast media, some radiologists have suggested a staged approach to imaging with a review of the non-contrast-enhanced scan before conducting an arterial and venous phase. For patients with a decrease in diameter and volume, the contrast phase of the scan could be avoided in appropriately selected EVAR follow-up cases. However, at this time, this protocol is not practical because of the need for real-time reading by the radiologist and communication with the physician ordering the image. An automated program could solve this problem by enabling radiologists to focus their time and workflow. Finally, automation of endoleak volume would also be useful in clinical research to further refine the natural history of this common problem. Expanding the algorithm's capability to other anatomic parameters, such as the detection of thrombus position and coupling it with patient data, may allow endoleak prediction in the future.
Limitations to this work include that it was a single-center study without validation across a larger series of CTA studies. Further work is needed to train and to test the algorithm on edge cases. For example, we excluded CT images with prior embolization in this analysis. The algorithm must also be tested across a greater variety of devices as some have specific characteristics that may affect the interpretation.29 We did not design the algorithm to determine the type of endoleak or to distinguish thrombus as others have reported.15 Further work is needed to identify characteristics that predict the source and origin of the endoleak. Finally, institutional imaging protocols, imaging parameters, and CT scanner manufacturers vary with respect to routine three-phase imaging factors, slice thickness, intravascular iodinated contrast media volume, and other technical specifications that must be considered in validating the algorithm.
Conclusions
This machine learning algorithm shows promise in augmenting a human's ability to interpret postoperative CTA images and may help improve post-EVAR surveillance.
Author contributions
Conception and design: SH, SW, DB
Analysis and interpretation: SH, CM, SW, DB
Data collection: SH, MP, CM, DB
Writing the article: SH, DB
Critical revision of the article: SH, MP, CM, SW, DB
Final approval of the article: SH, MP, CM, SW, DB
Statistical analysis: SH
Obtained funding: DB
Overall responsibility: DB
From the Society for Vascular Surgery
Footnotes
This study was funded by a University of Vermont Department of Surgery grant.
Author conflict of interest: none.
The editors and reviewers of this article have no relevant financial relationships to disclose per the JVS-Vascular Science policy that requires reviewers to decline review of any manuscript for which they may have a conflict of interest.
References
- 1.Chaikoff E.L., Dalman R.L., Eskandari M.K., Jackson B.M., Lee W.A., Mansour M.A. The Society for Vascular Surgery practice guidelines on the care of patients with an abdominal aortic aneurysm. J Vasc Surg. 2018;67:2–77.e2. doi: 10.1016/j.jvs.2017.10.044. [DOI] [PubMed] [Google Scholar]
- 2.Lo R.C., Buck D.B., Herrmann J., Hamdan A.D., Wyers M., Patel V.I. Vascular Study Group of New England. Risk factors and consequences of persistent type II endoleaks. J Vasc Surg. 2016;63:895–901. doi: 10.1016/j.jvs.2015.10.088. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 3.Lalys F., Daoudal A., Gindre J., Göksu C., Lucas A., Kaladji A. Influencing factors of sac shrinkage after endovascular aneurysm repair. J Vasc Surg. 2017;65:1830–1838. doi: 10.1016/j.jvs.2016.12.131. [DOI] [PubMed] [Google Scholar]
- 4.Antoniou G.A., Georgiadis G.S., Antoniou S.A., Neequaye S., Brennan J.A., Torella F. Late rupture of abdominal aortic aneurysm after previous endovascular repair: a systematic review and meta-analysis. J Endovasc Ther. 2015;22:734–744. doi: 10.1177/1526602815601405. [DOI] [PubMed] [Google Scholar]
- 5.Schanzer A., Greenberg R.K., Hevelone N., Robinson W.P., Eslami M.H., Goldberg R.J. Predictors of abdominal aortic aneurysm sac enlargement after endovascular repair [erratum in Circulation 2012;125:e266] Circulation. 2011;123:2848–2855. doi: 10.1161/CIRCULATIONAHA.110.014902. [DOI] [PubMed] [Google Scholar]
- 6.Karthikesalingam A., Al-Jundi W., Jackson D., Boyle J.R., Beard J.D., Holt P.J. Systematic review and meta-analysis of duplex ultrasonography, contrast-enhanced ultrasonography or computed tomography for surveillance after endovascular aneurysm repair. Br J Surg. 2012;99:1514–1523. doi: 10.1002/bjs.8873. [DOI] [PubMed] [Google Scholar]
- 7.Cantisani V., Ricci P., Grazhdani H., Napoli A., Fanelli F., Catalano C. Prospective comparative analysis of colour-Doppler ultrasound, contrast-enhanced ultrasound, computed tomography and magnetic resonance in detecting endoleak after endovascular abdominal aortic aneurysm repair. Eur J Vasc Endovasc Surg. 2011;41:186–192. doi: 10.1016/j.ejvs.2010.10.003. [DOI] [PubMed] [Google Scholar]
- 8.Nolz R., Asenbaum U., Furtner J., Woitek R., Unterhumer S., Wibmer A. Type 2 endoleaks: the diagnostic performance of non-specialized readers on arterial and venous phase multi-slice CT angiography. PLoS One. 2016;11:e0149725. doi: 10.1371/journal.pone.0149725. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 9.Schnitzbauer M., Güntner O., Wohlgemuth W.A., Zeman F., Haimerl M., Stroszczynski C. CT after Endovascular repair of abdominal aortic aneurysms: diagnostic accuracy of diameter measurements for the detection of aneurysm sac enlargement. J Vasc Interv Radiol. 2018;29:178–187.e3. doi: 10.1016/j.jvir.2017.09.012. [DOI] [PubMed] [Google Scholar]
- 10.Beam A.L., Kohane I.S. Big data and machine learning in health care. JAMA. 2018;319:1317–1318. doi: 10.1001/jama.2017.18391. [DOI] [PubMed] [Google Scholar]
- 11.Kauffmann C., Tang A., Therasse E., Giroux M.F., Elkouri S., Melanson P. Measurements and detection of abdominal aortic aneurysm growth: accuracy and reproducibility of a segmentation software. Eur J Radiol. 2012;81:1688–1694. doi: 10.1016/j.ejrad.2011.04.044. [DOI] [PubMed] [Google Scholar]
- 12.Riahi A., Kauffmann C., Therasse E., Morin-Roy F., Elkouri S., Gilbert P. Clinical validation of a semi-automated software for maximal diameter measurements for endovascular repair follow-up. J Vasc Interv Radiol. 2019;30:523–530. doi: 10.1016/j.jvir.2018.11.006. [DOI] [PubMed] [Google Scholar]
- 13.Lu J., Egger J., Wimmer A., Großkopf S., Freisleben B. Detection and visualization of endoleaks in CT data for monitoring of thoracic and abdominal aortic aneurysm stents. Med Imaging. 2008;6918:69181F. [Google Scholar]
- 14.Hong H.A., Sheikh U.U. 2016 IEEE 12th International Colloquium on Signal Processing & Its Applications. Melaka; Malaysia: March 4-6, 2016. Automatic detection, segmentation and classification of abdominal aortic aneurysm using deep learning; pp. 242–246. [Google Scholar]
- 15.Lopez-Linares K., Aranjuelo N., Kabongo L., Maclair G., Lete N., Ceresa M. Fully automatic detection and segmentation of abdominal aortic thrombus in post-operative CTA images using deep convolutional neural networks. Med Image Anal. 2018;46:202–214. doi: 10.1016/j.media.2018.03.010. [DOI] [PubMed] [Google Scholar]
- 16.Macıa I., Grana M., Maiora J., Paloc C., de Blas M. Detection of type II endoleaks in abdominal aortic aneurysms after endovascular. Comput Biol Med. 2011;41:871–880. doi: 10.1016/j.compbiomed.2011.07.005. [DOI] [PubMed] [Google Scholar]
- 17.Lin T.Y., Goyal P., Girshick R., He K., Dollar P. 2017. Focal loss for dense object detection. In: 2017 Proceedings of the IEEE International Conference on Computer Vision; Venice, Italy; October 22-29; pp. 2980–2988. [Google Scholar]
- 18.He K., Zhang X., Ren S., Sun J. 2016. Deep residual learning for image recognition. In: 2016 Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition; Las Vegas, Nev June 27-30; pp. 770–778. [Google Scholar]
- 19.Girshick R., Donahue J., Darrell T., Malik J. 2014. Rich feature hierarchies for accurate object detection and semantic segmentation. In: 2014 IEEE Conference on Computer Vision and Pattern Recognition; Columbus, Ohio; June 24-27. [Google Scholar]
- 20.Krizhevsky A., Sutskever I., Hinton G.E. 2012. ImageNet classification with deep convolutional neural networks. In: Twenty-sixth Annual Conference on Neural Information Processing Systems; Lake Tahoe, Nev; December 3-8. [Google Scholar]
- 21.Garcia-Garcia A., Orts-Escolano S., Oprea S., Villena-Martinez V., Garcia-Rodriguez J. 2017. A review on deep learning techniques applied to semantic segmentation. arXiv. 1704.06857. [Google Scholar]
- 22.Partovi S., Trischman T., Rafailidis V., Ganguli S., Rengier F., Goerne H. Multimodality imaging assessment of endoleaks post-endovascular aortic repair. Br J Radiol. 2018;91:20180013. doi: 10.1259/bjr.20180013. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 23.Kitagawa A., Mastracci T.M., von Allmen R., Powell J.T. The role of diameter versus volume as the best prognostic measurement of abdominal aortic aneurysms. J Vasc Surg. 2013;58:258–265. doi: 10.1016/j.jvs.2013.05.001. [DOI] [PubMed] [Google Scholar]
- 24.Chaikof E.L., Blankensteijn J.D., Harris P.L., White G.H., Zarins C.K., Bernhard V.M. Reporting standards for endovascular aortic aneurysm repair. J Vasc Surg. 2002;35:1048–1060. doi: 10.1067/mva.2002.123763. [DOI] [PubMed] [Google Scholar]
- 25.Higashiura W., Greenberg R.K., Katz E., Geiger L., Bathhurst S. Predictive factors, morphologic effects, and proposed treatment paradigm for type II endoleaks after repair of infrarenal abdominal aortic aneurysms. J Vasc Interv Radiol. 2007;18:975–981. doi: 10.1016/j.jvir.2007.05.019. [DOI] [PubMed] [Google Scholar]
- 26.Müller-Wille R., Schötz S., Zeman F., Uller W., Güntner O., Pfister K. CT features of early type II endoleaks after endovascular repair of abdominal aortic aneurysms help predict aneurysm sac enlargement. Radiology. 2015;274:906–916. doi: 10.1148/radiol.14140284. [DOI] [PubMed] [Google Scholar]
- 27.Timaran C.H., Ohki T., Rhee S.J., Veith F.J., Gargiulo N.J., 3rd, Toriumi H. Predicting aneurysm enlargement in patients with persistent type II endoleaks. J Vasc Surg. 2004;39:1157–1162. doi: 10.1016/j.jvs.2003.12.033. [DOI] [PubMed] [Google Scholar]
- 28.Demehri S., Signorelli J., Kumamaru K.K., Wake N., George E., Hanley M. Volumetric quantification of type II endoleaks: an indicator for aneurysm sac growth following endovascular abdominal aortic aneurysm repair. Radiology. 2015;277:308. doi: 10.1148/radiol.2015154029. [DOI] [PubMed] [Google Scholar]
- 29.Helo N., Chang A.C., Hyun C., Bianchi C., Teruya T.H., Yi A.C. Retrospective review of billowing phenomenon—a mimic of endoleak following placement of Endologix covered stent for the treatment of abdominal aortic aneurysm. Ann Vasc Surg. 2017;45:239–246. doi: 10.1016/j.avsg.2017.06.127. [DOI] [PubMed] [Google Scholar]