Abstract
Lung mass density is directly associated with lung pathology. Computed Tomography (CT) evaluates lung pathology using the Hounsfield unit (HU) but not lung density directly. We have developed a lung ultrasound surface wave elastography (LUSWE) technique to measure the surface wave speed of superficial lung tissue. The objective of this study was to develop a method for analyzing lung mass density of superficial lung tissue using a deep neural network (DNN) and synthetic data of wave speed measurements with LUSWE. The synthetic training dataset of surface wave speed, excitation frequency, lung mass density, and viscoelasticity from LUSWE (788000 in total) was used to train the DNN model. The DNN was composed of 3 hidden layers of 1024 neurons for each layer and trained for 10 epochs with a batch size of 4096 and a learning rate of 0.001 with three types of optimizers. The test dataset (4000) of wave speeds at three excitation frequencies (100, 150, and 200 Hz) and shear elasticity of superficial lung tissue was used to predict the lung density and evaluate its accuracy compared with predefined lung mass densities. This technique was then validated on a sponge phantom experiment. The obtained results showed that predictions matched well with test dataset (validation accuracy is 0.992) and experimental data in the sponge phantom experiment. This method may be useful to analyze lung mass density by using the DNN model together with the surface wave speed and lung stiffness measurements.
Keywords: deep neural network, lung density, lung ultrasound surface wave elastography, lung disease
Introduction
Interstitial lung disease (ILD), manifested as fibrotic and stiffened lung parenchyma, can result in symptoms such as dyspnea and may lead to respiratory failure [1]. ILD usually affects the peripheral, sub-pleural regions of the lung [2, 3]. ILD can be induced by autoimmune diseases, genetic abnormalities, and long-term exposures to hazardous materials yet its cause is mostly unknown and lung manifestations are characterized as idiopathic interstitial pneumonia.
It has been shown that lung mass is not uniformly distributed in the lung, with greater density in the lower lobes. Moreover, lung mass increases with the degree of fibrosis [4, 5]. Currently, there are no clinical imaging modalities to directly measure lung mass density. High-resolution computed tomography (HRCT) is the clinical standard for diagnosing lung fibrosis given the specific radiation attenuation properties of the lung tissue [6, 7]. Numerous studies have shown that the extent of emphysema measured by pathology scores in resected lung tissue is well correlated with lung density values obtained from preoperative CT of the lung [8, 9]. Two objective measures of CT lung density, so-called densitometric parameters (the percentile density and relative area of emphysema), were used to correlate emphysema on CT to the extent of emphysema in the corresponding resected lobes. CT images have been used to quantify lung density to some extent [10–12]. Computed tomography (CT) is the major clinical imaging modality for assessing various lung diseases. The mechanism of CT is based on the changes of tissue mass density but the CT system uses the Hounsfield unit (HU) but not lung density to image the lung. Yet, it exposes patients to a high dose of radiation.
Data-driven clinical predictions are not new in medical practice. Combined with modern machine learning, clinical data enable us to generate prediction outcomes for different clinical applications. Machine learning techniques are particularly suitable for predictions based on existing data. These approaches are able to discover and identify patterns and relationships between them from complex datasets, while they are able to effectively predict future outcomes [13, 14]. In supervised learning, a labeled set of training data is used to estimate or map the input to the desired output. In the case of regression problems, a learning function maps the data into a real-valued variable. For each new sample, the value of the predictive variable can be estimated [15].
It is well known that lung tissue is normally filled with air and the difference in acoustic impedance between air and tissue is large, resulting that most of the energy of the ultrasound wave is reflected from the lung surface. We have recently developed a lung ultrasound surface wave elastography technique (LUSWE) for measuring the surface wave speeds of superficial lung tissue [16–18]. The estimation of viscoelasticity of lung tissue is also dependent on mass density of lung tissue. However, the data of mass density of lung is very limited, especially when the lung tissue is diseased (such as ILD) or at various pulmonary pressures (such as at total lung volume). The purpose of this study is to develop a method to analyze the lung density using a deep neural network algorithm and the LUSWE measurements.
Materials and methods
Synthetic dataset
In order to generate the database for training the DNN model, analytical simulations were carried out for different sets of material parameters.
The surface wave speed model is used,
(1) |
where μ1, μ2 and ρ are shear elasticity, shear viscosity, and mass density of the material, while ω and cs are the excitation frequency and corresponding surface wave speed [19–21]. Lung density of healthy subjects obtained via x-ray was reported to be 0.24 g/cm3. For the patients with pulmonary congestion and edema, the lung density was 0.33-0.62 g/cm3 [22]. We could not find lung density data for ILD patients or at the total lung volume. Young’s modulus of normal lung tissue was reported to be 1-5 kPa [23]. Fibrotic lung tissue was reported 20 times stiffer than normal lung tissues [24]. The ranges of material parameters were: μ1 = (2 kPa, 14 kPa), μ2 =(2 Pa·s, 17 Pa·s) [25], ρ = (240 kg/m3, 620 kg/m3). A certain number of random numbers in a normal distribution were generated within the range of material parameter (20 for μ1, 20 for μ2 and 3200 for ρ). For each set of material properties (μ1, μ2 and ρ), three excitation frequencies (100, 150, and 200 Hz) were used to generate the wave speeds at corresponding frequencies. 792000 data sets were obtained in total. The dataset is divided into three parts: training data (630400), validation data (157600), testing data (4000). The features available for us to use are the shear wave speeds of lung tissue at three excitation frequencies and shear elasticity of lung tissue. The only label is the mass density of superficial lung tissue.
Deep neural network model
The synthetic dataset is used to train a DNN model. The proposed architecture is composed of 5 fully-connected layers as described in Fig. 1. The DNN model trained by back propagation consists of 4 neurons in the input layer, 1024 neurons in each of three hidden layers, and 1 neuron in the output layer. The surface wave speeds at three frequencies and shear elasticity (cs_100, cs_150, cs_200 and μ1) of lung tissue are imported as input layer. For our Deep Neural Network, we used the ‘DNNRegressor’ with rectified linear activation unit (ReLU). To reduce overfitting, regularizer L2 was used for each fully-connected layer [26]. The training of DNN is composed of two parts: a training objective and an optimization algorithm to minimize this objective function. In this study, we evaluated the performance of 3 optimizers, Adam, Stochastic gradient descent (SGD) and AdaGrad, to minimize the mean square error (MSE) [27, 28]. The MSE represents the dissimilarity of the approximated output distribution from the true distribution of labels. Learning rate was 0.001. The neuron in the output layer corresponds to the predicted lung mass density and is compared with the predefined lung mass density (TargetsData). The evaluation of performance of different optimizers was based on a train-validation-test scheme. The actual training of the approach was carried out on the training dataset, while the validation dataset (cross-validation ratio is 0.2) was used for fine tuning of hyper-parameters; the overall performance of each optimizer was evaluated on the test dataset [29].
The trainable weights are initialized with the Xavier initialization [30]. The weight updates are performed in mini-batches and the number of samples per batch was set to 4096. The training ends when the network does not significantly improve its performance on the validation set for a predefined number of epochs. This number is set to 10 and the performance is evaluated in terms of loss and accuracy [31]. Loss is mean square error, which is dissimilarity of the approximated output distribution from the true distribution of labels. . Accuracy is calculated in terms of coefficient of determination R2, which is calculated as, . Yi is the training data, is the prediction from the model, is the mean value of training dataset. An improvement is considered significant if the relative increase in performance is at least 0.5%.
The DNN was implemented using the Python API of TensorFlow and TFLearn framework. Graph visualization of data flow for the network was shown in Figure 1.
LUSWE on sponge phantom
A cellulose sponge (Ocelo utility sponge, 3M, St. Paul, MN, USA) was cut into a 3.0 cm × 1.9 cm × 8.0 cm rectangular piece. The volume and weight of the dry sponge were measured to calculate its density. The sponge was put into a customized metal holder with a fixed inner width of 2.0 cm (Figure 2). It was then injected with tap water at an interval of 3 ml from 0 to 30 ml and the corresponding mass density of sponge was calculated. After each injection, a sinusoidal signal of 0.1s duration was generated using a function generator (33120A, Agilent Technologies, Inc., Santa Clara, CA, USA) and amplified with amplifier (Pyle PCA4 stereo power amplifier, Pyle audio inc., Brooklyn, NY, USA) at five frequencies 100, 150, 200, 250 and 300 Hz [32]. This signal drives a mechanical shaker (FG-142, Labworks Inc., Costa Mesa, CA, USA) which applied a harmonic vibration on the sponge phantom surface. A Verasonics Vantage system with a L11-5v probe (6.4 MHZ) was used to capture the motion of the sponge. Each measurement was repeated three times at each injection and frequency. The surface wave speed of the sponge was analyzed by the change in wave phase with distance. For the details of procedures for measuring the surface wave speed of the sponge phantom, readers are encouraged to read reference [18, 19]. The viscoelasticity of the sponge at each injection was calculated using the Voigt model [33]. Given the surface wave speed at different excitation frequency and viscoelasticity of the sponge at different level of water injection, the mass density of the sponge was predicted using the trained DNN model. It was then compared with the measured mass density of the sponge phantom at different level of water injection.
Results
The convergence of the three different optimizers is demonstrated in terms of the validation loss over the epochs in Fig. 3(a). The loss drops dramatically in the first few steps for Adam yet soon stops. For SGD and AdaGrad, the loss gradually drops toward the end. The validation accuracy of model was plotted in Fig. 3(b). Both SGD and AdaGrad gradually approach 0.86 with AdaGrad converging faster than SGD while Adam gradually approaches 1 from approximately 0.7. MSE and accuracy of the validation dataset of three different optimizers were shown in Table 1. Minimizing the MSE by the Adam optimizer yielded the best results in a small number of iterations. AdaGrad follows with about 5% lower performance and SGD with even a higher drop in performance of 8%. Predefined and predicted lung densities of different optimizers for the test dataset were shown in Table 2. It showed that the prediction matched well with the predefined densities using Adam yet not good with SGD or AdaGrad.
Table 1.
Metrics | Adam | SGD | AdaGrad |
---|---|---|---|
MSE Loss | 8 | 26062 | 26422 |
Val_acc | 0.992 | 0.856 | 0.862 |
Table 2.
Predefined density (kg/m3) | 378 | 491 | 544 | 479 | 495 | 548 | 463 | 275 | 249 | 439 |
| ||||||||||
Adam | 375 | 490 | 544 | 478 | 494 | 548 | 461 | 274 | 249 | 437 |
SGD | 507 | 582 | 578 | 583 | 581 | 577 | 448 | 477 | 483 | 451 |
AdaGrad | 511 | 577 | 573 | 579 | 577 | 573 | 456 | 488 | 496 | 459 |
The predicted density from the DNN matched well with the measured density of the sponge phantom (Table 3). The validation accuracy is 0.92.
Table 3.
Measured (kg/m3) | 82 | 184 | 255 | 334 | 408 | 481 | 553 | 622 | 686 | 755 | 831 |
---|---|---|---|---|---|---|---|---|---|---|---|
Predicted | 107 | 219 | 288 | 353 | 429 | 458 | 573 | 649 | 710 | 770 | 830 |
Discussions
The aim of this study was to develop a deep neural network (DNN) model to predict the lung density for ILD patients based on measurements of wave speeds obtained from LUSWE. Ranges of viscoelasticity and densities of lung tissue covering both healthy controls and ILD patients were predefined to generate synthetic data in terms of wave speeds of lung tissue at three vibration frequencies to train the DNN model. Then, the DNN model was used to predict lung density based on wave speeds of lung tissue at three frequencies and shear elasticity of lung tissue. This model was also validated using a LUSWE on a sponge phantom. The obtained results show that DNN can be used to predict lung mass density with high accuracy.
Ultrasonography is not widely used in clinical practice for lung evaluation because lung tissue is filled with air and most energy of the ultrasound wave is reflected from the lung surface. However, lung ultrasonography can be used for diagnosing various thoracic diseases and especially useful in the emergency and critical care settings [34–36]. In order to noninvasively measure lung viscoelastic property, we have developed an ultrasound-based LUSWE technique to quantify superficial lung tissue stiffness [37, 38]. In LUSWE, a small, local 0.1 second harmonic vibration is generated by the indenter of a handheld shaker on the skin of the subject at three frequencies (100, 150, and 200 Hz). The ultrasound probe is placed approximately 5 mm away from the indenter in the same intercostal space to measure the generated surface wave propagation on the lung surface in that intercostal space. The wave propagation speed of superficial lung tissue is determined by the change in wave phase with distance.
At first, we used linear regression to identify lung mass density based on surface wave speeds of lung tissue at different excitation frequencies, yet got pretty poor results (data not shown). The DNN Regressor is a fully connected feed-forward model that is connected with a rectified linear activation unit (ReLU) [39]. It has been shown that activation function greatly affects the speed of convergence. The use of the ReLU function has been proven to be able to accelerate the training process compared with the sigmoid alternative. SGD is a stochastic approximation of the gradient descent optimization and iterative method for minimizing an objective function that is written as a sum of differentiable functions. AdaGrad is a modified stochastic gradient descent with per-parameter learning rate. It works well with sparse gradients. However, for noisy objectives, higher-order optimization is not suited. Adam is a method for efficient stochastic optimization that only requires first-order gradients with little memory requirements. It computes individual adaptive learning rates for different parameters from estimates of first and second moments of the gradients. Adam adapts learning rates for different layers instead of manually hand picking. Adam employs a preconditioner that adapts to the geometry of the data. Adam adapts the advantage of AdaGrad for sparse gradients. Moreover, its magnitudes of parameter updates are invariant to rescaling of the gradient, its step sizes are approximately bounded by the step size hyper-parameter, it does not require a stationary objective, and it performs a form of step size annealing [27, 40].
Lung CT scanning has widely been used to quantify lung density for emphysema [8]. Parenchyma of patients with pulmonary fibrosis was imaged with HRCT to evaluate lung density based on gray scale histogram [10]. HRCT is essential in quantitative analysis of ILD in terms of regional volumetric quantities [41]. However, HRCT substantially increases radiation exposure for patients and the potential for frequency HRCT use is limited by its expense. In future studies, HRCT could be used to validate the prediction of lung density with DNN. Lung density measurements via CT scanning was well correlated with pulmonary function tests [11]. However, CT or HRCT does not directly measure lung density. We could extend this DNN model together with CT and pulmonary function test (PFT) for analyzing patient’s LUSWE data. PFT can provide the global lung stiffness and LUSWE can provide local region lung stiffness measurements in various intercostal spaces. The novelty of this study was to develop a method for analyzing the lung mass density using DNN and measurements from LUSWE. In future studies, we will evaluate novel DNN techniques and their applications to our problems. We will increase the number of layers of neural network and use deep-residual-networks to improve the accuracy of prediction.
The wave speed on the lung surface was determined by analyzing ultrasound data directly from lung surface. Hence, the wave speed measurement is local and independent of the location of excitation. The wave speeds of superficial lung tissue in LUSWE are obtained at total lung capacity when a subject is taking a deep breath and holds for a few seconds. The lung density is also dependent on the pulmonary pressure. In future studies, in vitro studies can be conducted on porcine lungs to investigate the relationship between lung density and pulmonary pressure based on LUSWE and DNN.
Most soft tissues are incompressible and their mass densities are close to 1000 kg/m3. Lung parenchyma is a porous material filled with air and with a void ratio of approximately 0.7 [42, 43]. The range of lung mass between 240 kg/m3 and 620 kg/m3 was studied in this research based on the available data from literature. Sponge phantom has been shown to have similar microstructure as lung parenchyma [44, 45]. With its availability, relevant phantom models for a systemic study of induced disease states, such as pulmonary edema, can be generated. Pulmonary edema is a fundamental feature of congestive heart failure and inflammatory conditions such as acute respiratory distress syndrome [46]. The presence of extravascular lung water (EVLW) predicts worse prognosis in critically ill patients [47] and increased risk of death or heart failure readmission [48]. The lung density should increase for lung edema. In future, we plan to evaluate the DNN model for patients with pulmonary edema.
Conclusion
In this work, we propose to use a deep neural network model for lung mass density prediction of superficial lung tissue based on LUSWE. The synthetic data was obtained by calculating surface wave speeds of superficial lung tissue at different excitation frequencies given viscoelasticity and density of lung tissue. The training was performed by minimizing the mean square error of the training set and validation set with the different optimizers. The proposed method is evaluated on the synthetic dataset and validated on the sponge phantom experiment. The DNN model is able to predict lung tissue density with high accuracy using the Adam optimizer.
Highlight.
Developing a method to analyze lung mass density using a deep neural network model and experimental data with lung ultrasound surface wave elastography (LUSWE).
Synthetic data was generated in terms of surface wave speed from excitation frequency, lung mass density and viscoelasticity from LUSWE to train the deep neural network model.
The obtained results showed that predictions matched well with test dataset (validation accuracy is 0.992).
This model was validated in a lung phantom model using sponges.
Acknowledgments
This study is supported by NIH R01HL125234 from the National Heart, Lung and Blood Institute. We would like to thank Mrs. Jennifer Poston for editing this manuscript.
Footnotes
Publisher's Disclaimer: This is a PDF file of an unedited manuscript that has been accepted for publication. As a service to our customers we are providing this early version of the manuscript. The manuscript will undergo copyediting, typesetting, and review of the resulting proof before it is published in its final citable form. Please note that during the production process errors may be discovered which could affect the content, and all legal disclaimers that apply to the journal pertain.
References
- 1.Coultas DB, et al. The epidemiology of interstitial lung diseases. Am J Respir Crit Care Med. 1994;150(4):967–72. doi: 10.1164/ajrccm.150.4.7921471. [DOI] [PubMed] [Google Scholar]
- 2.Desai SR, et al. CT features of lung disease in patients with systemic sclerosis: comparison with idiopathic pulmonary fibrosis and nonspecific interstitial pneumonia. Radiology. 2004;232(2):560–7. doi: 10.1148/radiol.2322031223. [DOI] [PubMed] [Google Scholar]
- 3.Wells AU, et al. The predictive value of appearances on thin-section computed tomography in fibrosing alveolitis. Am Rev Respir Dis. 1993;148(4 Pt 1):1076–82. doi: 10.1164/ajrccm/148.4_Pt_1.1076. [DOI] [PubMed] [Google Scholar]
- 4.Coates G, et al. Changes in lung volume, lung density, and distribution of ventilation during hypobaric decompression. Journal of Applied Physiology. 1979;46(4):752–755. doi: 10.1152/jappl.1979.46.4.752. [DOI] [PubMed] [Google Scholar]
- 5.Guenard H, et al. Lung density and lung mass in emphysema. Chest. 1992;102(1):198–203. doi: 10.1378/chest.102.1.198. [DOI] [PubMed] [Google Scholar]
- 6.Mathieson JR, et al. Chronic diffuse infiltrative lung disease: comparison of diagnostic accuracy of CT and chest radiography. Radiology. 1989;171(1):111–6. doi: 10.1148/radiology.171.1.2928513. [DOI] [PubMed] [Google Scholar]
- 7.Verschakelen JA. The role of high-resolution computed tomography in the work-up of interstitial lung disease. Curr Opin Pulm Med. 2010;16(5):503–10. doi: 10.1097/MCP.0b013e32833cc997. [DOI] [PubMed] [Google Scholar]
- 8.Gould G, et al. CT measurements of lung density in life can quantitate distal airspace enlargement—an essential defining feature of human emphysema. American Review of Respiratory Disease. 1988;137(2):380–392. doi: 10.1164/ajrccm/137.2.380. [DOI] [PubMed] [Google Scholar]
- 9.Bankier AA, et al. Pulmonary emphysema: subjective visual grading versus objective quantification with macroscopic morphometry and thin-section CT densitometry. Radiology. 1999;211(3):851–858. doi: 10.1148/radiology.211.3.r99jn05851. [DOI] [PubMed] [Google Scholar]
- 10.Hartley PG, et al. High-resolution CT-derived measures of lung density are valid indexes of interstitial lung disease. Journal of Applied Physiology. 1994;76(1):271–277. doi: 10.1152/jappl.1994.76.1.271. [DOI] [PubMed] [Google Scholar]
- 11.Heremans A, Verschakelen JA, Demedts M. Measurement of lung density by means of quantitative CT scanning: a study of correlations with pulmonary function tests. Chest. 1992;102(3):805–811. doi: 10.1378/chest.102.3.805. [DOI] [PubMed] [Google Scholar]
- 12.Gould G, et al. Lung CT density correlates with measurements of airflow limitation and the diffusing capacity. European Respiratory Journal. 1991;4(2):141–146. [PubMed] [Google Scholar]
- 13.Chen JH, Asch SM. Machine learning and prediction in medicine− beyond the peak of inflated expectations. N Engl J Med. 2017;376(26):2507–2509. doi: 10.1056/NEJMp1702071. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 14.Kourou K, et al. Machine learning applications in cancer prognosis and prediction. Computational and structural biotechnology journal. 2015;13:8–17. doi: 10.1016/j.csbj.2014.11.005. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 15.Menden MP, et al. Machine learning prediction of cancer cell sensitivity to drugs based on genomic and chemical properties. PLoS one. 2013;8(4):e61318. doi: 10.1371/journal.pone.0061318. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 16.Zhang X, et al. Lung ultrasound surface wave elastography: a pilot clinical study. IEEE Tranctions on Ultrasonics Ferroelectrics, and Frequency Control. 2017 doi: 10.1109/TUFFC.2017.2707981. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 17.Kalra S, et al. Respirology. Wiley; 111 River St, Hoboken 07030-5774, NJ USA: 2017. Lung ultrasound surface wave elastography-preliminary measurements in patients with interstitial lung diseases. [Google Scholar]
- 18.Zhang X, et al. An ultrasound surface wave elastography technique for noninvasive measurement of surface lung tissue. The Journal of the Acoustical Society of America. 2017;141(5):3721–3721. [Google Scholar]
- 19.Zhou B, Sit AJ, Zhang X. Noninvasive measurement of wave speed of porcine cornea in ex vivo porcine eyes for various intraocular pressures. Ultrasonics. 2017;81(Supplement C):86–92. doi: 10.1016/j.ultras.2017.06.008. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 20.Kubo K, et al. The quantitative evaluation of the relationship between the forces applied to the palm and carpal tunnel pressure. Journal of Biomechanics. doi: 10.1016/j.jbiomech.2017.10.039. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 21.Kubo K, et al. Ultrasound elastography for carpal tunnel pressure measurement: A cadaveric validation study. J Orthop Res. 2017 doi: 10.1002/jor.23658. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 22.Garnett E, et al. Lung density: clinical method for quantitation of pulmonary congestion and edema. Canadian Medical Association Journal. 1977;116(2):153. [PMC free article] [PubMed] [Google Scholar]
- 23.Liu F, et al. Feedback amplification of fibrosis through matrix stiffening and COX-2 suppression. The Journal of cell biology. 2010;190(4):693–706. doi: 10.1083/jcb.201004082. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 24.Soucy PA, et al. Microelastic properties of lung cell-derived extracellular matrix. Acta biomaterialia. 2011;7(1):96–105. doi: 10.1016/j.actbio.2010.07.021. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 25.Romero PV, et al. J Milic-Emili. Springer Milan; Milano: 1998. Elasticity, viscosity and plasticity in lung parenchyma, in Applied Physiology in Respiratory Mechanics; pp. 57–72. [Google Scholar]
- 26.Ng AY. Proceedings of the twenty-first international conference on Machine learning. ACM; 2004. Feature selection, L 1 vs. L 2 regularization, and rotational invariance. [Google Scholar]
- 27.Kingma D, Ba J. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980. 2014 [Google Scholar]
- 28.Zeiler MD, et al. 2013 IEEE International Conference on. IEEE; 2013. On rectified linear units for speech processing. in Acoustics, Speech and Signal Processing (ICASSP) [Google Scholar]
- 29.Kohavi R. Ijcai. Stanford, CA: 1995. A study of cross-validation and bootstrap for accuracy estimation and model selection. [Google Scholar]
- 30.Glorot X, Bengio Y. Understanding the difficulty of training deep feedforward neural networks. Proceedings of the Thirteenth International Conference on Artificial Intelligence and Statistics. 2010 [Google Scholar]
- 31.Shin HC, et al. Deep convolutional neural networks for computer-aided detection: CNN architectures, dataset characteristics and transfer learning. IEEE transactions on medical imaging. 2016;35(5):1285–1298. doi: 10.1109/TMI.2016.2528162. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 32.Cheng YS, et al. Comparison of two ways of altering carpal tunnel pressure with ultrasound surface wave elastography. Journal of Biomechanics. 2018 doi: 10.1016/j.jbiomech.2018.04.003. [DOI] [PubMed] [Google Scholar]
- 33.Zhang X, et al. An Ultrasound Surface Wave Technique for Assessing Skin and Lung Diseases. Ultrasound in Medicine & Biology. 2018;44(2):321–331. doi: 10.1016/j.ultrasmedbio.2017.10.010. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 34.Mathis G, Lessnau KD. Atlas of Chest Sonography. Berlin: Springer-Verlag; 2008. [Google Scholar]
- 35.Hakimisefat B, Mayo PH. Lung ultrasonography. The Open Critical Care Medicine Journal. 2010;3:21–25. [Google Scholar]
- 36.Mayo PH, Doelken P. Pleural ultrasonography. Clin Chest Med. 2006;27(2):215–27. doi: 10.1016/j.ccm.2006.01.003. [DOI] [PubMed] [Google Scholar]
- 37.Xiaoming Zhang, B Z, Sanjay Kalra, Brian Bartholmai, James Greenleaf, Thomas Osborn. Quantitative assessment of scleroderma using ultrasound surface wave elastography. Ultrasonics Symposium (IUS), 2017 IEEE International. 2017 [Google Scholar]
- 38.Xiaoming Zhang, B Z, Thomas Osborn, Brian Bartholmai, James Greenleaf, Sanjay Kalra. Assessment of interstitial lung disease using lung ultrasound surface wave elastography. Ultrasonics Symposium (IUS), 2017 IEEE International. 2017 [Google Scholar]
- 39.Toshev A, Szegedy C. Deeppose: Human pose estimation via deep neural networks. Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition. 2014 [Google Scholar]
- 40.Prim DA, et al. A mechanical argument for the differential performance of coronary artery grafts. Journal of the mechanical behavior of biomedical materials. 2016;54:93–105. doi: 10.1016/j.jmbbm.2015.09.017. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 41.Bartholmai BJ, et al. Quantitative CT imaging of interstitial lung diseases. Journal of thoracic imaging. 2013;28(5) doi: 10.1097/RTI.0b013e3182a21969. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 42.Luo H, Goldstein I, Udelson D. A three-dimensional theoretical model of the relationship between cavernosal expandability and percent cavernosal smooth muscle. The journal of sexual medicine. 2007;4(3):644–655. doi: 10.1111/j.1743-6109.2007.00492.x. [DOI] [PubMed] [Google Scholar]
- 43.Zhang X, et al. A Novel Non-Invasive Ultrasound Vibro-Elastography Technique for Assessing Patients with Erectile Dysfunction and Peyronie’s Disease. Urology. 2018 doi: 10.1016/j.urology.2018.01.040. [DOI] [PubMed] [Google Scholar]
- 44.Blüthgen C, et al. Economical Sponge Phantom for Teaching, Understanding, and Researching A-and B-Line Reverberation Artifacts in Lung Ultrasound. Journal of Ultrasound in Medicine. 2017;36(10):2133–2142. doi: 10.1002/jum.14266. [DOI] [PubMed] [Google Scholar]
- 45.Zhou B, Zhang X. Finite element analysis of lung ultrasound surface wave elastography. The Journal of the Acoustical Society of America. 2018;143(3):1803–1803. [Google Scholar]
- 46.Picano E, Pellikka PA. Ultrasound of extravascular lung water: a new standard for pulmonary congestion. European heart journal. 2016;37(27):2097–104. doi: 10.1093/eurheartj/ehw164. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 47.Sakka SG, et al. Prognostic value of extravascular lung water in critically ill patients. Chest. 2002;122(6):2080–6. doi: 10.1378/chest.122.6.2080. [DOI] [PubMed] [Google Scholar]
- 48.Coiro S, et al. Prognostic value of residual pulmonary congestion at discharge assessed by lung ultrasound imaging in heart failure. Eur J Heart Fail. 2015;17(11):1172–81. doi: 10.1002/ejhf.344. [DOI] [PubMed] [Google Scholar]