Skip to main content
Erschienen in: Journal of Digital Imaging 4/2017

Open Access 26.05.2017

Performance of an Artificial Multi-observer Deep Neural Network for Fully Automated Segmentation of Polycystic Kidneys

verfasst von: Timothy L. Kline, Panagiotis Korfiatis, Marie E. Edwards, Jaime D. Blais, Frank S. Czerwiec, Peter C. Harris, Bernard F. King, Vicente E. Torres, Bradley J. Erickson

Erschienen in: Journal of Imaging Informatics in Medicine | Ausgabe 4/2017

Abstract

Deep learning techniques are being rapidly applied to medical imaging tasks—from organ and lesion segmentation to tissue and tumor classification. These techniques are becoming the leading algorithmic approaches to solve inherently difficult image processing tasks. Currently, the most critical requirement for successful implementation lies in the need for relatively large datasets that can be used for training the deep learning networks. Based on our initial studies of MR imaging examinations of the kidneys of patients affected by polycystic kidney disease (PKD), we have generated a unique database of imaging data and corresponding reference standard segmentations of polycystic kidneys. In the study of PKD, segmentation of the kidneys is needed in order to measure total kidney volume (TKV). Automated methods to segment the kidneys and measure TKV are needed to increase measurement throughput and alleviate the inherent variability of human-derived measurements. We hypothesize that deep learning techniques can be leveraged to perform fast, accurate, reproducible, and fully automated segmentation of polycystic kidneys. Here, we describe a fully automated approach for segmenting PKD kidneys within MR images that simulates a multi-observer approach in order to create an accurate and robust method for the task of segmentation and computation of TKV for PKD patients. A total of 2000 cases were used for training and validation, and 400 cases were used for testing. The multi-observer ensemble method had mean ± SD percent volume difference of 0.68 ± 2.2% compared with the reference standard segmentations. The complete framework performs fully automated segmentation at a level comparable with interobserver variability and could be considered as a replacement for the task of segmentation of PKD kidneys by a human.

Introduction

A particular section of machine learning, known as deep learning, is currently enjoying its renaissance in the area of artificial intelligence [1]. For computer vision tasks, the primary motivation of deep learning techniques is the biomimicry of the human visual system, allowing computers to learn from experience and formulate an understanding in terms of a hierarchy of concepts. In the field of medical image processing, deep learning approaches are providing computational solutions to a wide range of automation and classification tasks [2]. For instance, deep learning techniques have been used in organ [3] and tumor segmentation tasks [4], as well as tissue and tumor classification [5, 6]. The fundamental difference of deep learning methods is that they take a unique approach to solving classical image processing tasks by allowing the computer to identify image features of interest. This is in contrast to traditional machine learning that requires predefining the features of interest (e.g., image edges, intensity, and/or texture). Based on the successes of deep learning techniques, we sought to explore their potential in solving the difficult task of segmenting the kidneys of patients affected by autosomal dominant polycystic kidney disease (ADPKD).
In ADPKD, these phenotypic differences include renal size (e.g., renal volumes can vary from ~200 ml to more than 7000 ml), shape, and composition (e.g., appearance of the border of the kidneys in MR images has highly variable signal intensities resulting from whether the border is composed of simple and/or complex cysts, varying degrees of fibrosis, or healthy renal parenchyma). The natural course of ADPKD is highly variable and is characterized by progressive enlargement of cysts within the kidneys and is a leading cause of end-stage renal disease (ESRD) [710]. Total kidney volume (TKV) has become the main image-based biomarker for following ADPKD progression at early stages of the disease [1115]. Imaging methods such as ultrasound (US), computed tomography (CT), and magnetic resonance imaging (MRI) are employed to diagnose, monitor, and predict outcomes for patients affected by ADPKD [1619]. MRI has become the imaging modality of choice due to its superior soft tissue contrast, non-ionizing radiation, and accuracy. Current methods to manually measure TKV using MR images include volume calculation by the ellipsoidal method [20], stereological approaches [21], and planimetry tracings [22, 23].
Due to the large time requirement of manual tracing, automated approaches to segment kidneys are desirable. However, segmentation of ADPKD kidneys is challenging due to a number of factors. For instance, the shapes of the kidneys are highly irregular, and the contrast at the border of the kidney is highly variable at the interface of several different tissue types including fluid-filled cysts, calcified cysts, renal parenchyma, and fibrotic tissue. In addition, MR acquisition parameters vary widely from institution, requiring a robust approach which can handle not only the wide range of disease presentations but also the drastic difference in tissue contrast due to how the images were acquired.
We previously developed both semi- and fully automated segmentation approaches to allow accurate and reproducible measurement of TKV in ADPKD patients [24, 25]. Fortunately, these developments have allowed for the creation of a database of thousands of reference standard segmentations by which we have been able to explore novel, next-generation image processing techniques in order to finally and fully address the problem of segmentation of the PKD kidney in order to accurately and reproducibly derive TKV.
We have developed a deep neural network model that can capture both local and global context within the image. This model is based on a convolutional neural network (CNN) approach that performs a series of downsampling (i.e., max pooling operations which select the maximum value from a patch of features which help to reduce the data dimensionality) and upsampling procedures (similar to autoencoders [26], which allow classification to be made at the voxel level). The network also incorporates skip connections (similar to a CNN architecture known as U-Net [27] which connect layers at the same resolution and allow the networks to retain spatial information). The network is a cascade of layers that start by learning low-level features (e.g., edges and lines) and higher-level features (which combine this information to learn what is or is not the kidney). In summary, building a network with these components allows the network to (i) learn both low- and high-order features, (ii) learn both local- and entire image-level context, and (iii) perform voxel-wise classification (i.e., decide whether a voxel belongs to the kidneys or not).

Method

MRI Data

Institutional review board approval was obtained for this study. All subjects were appropriately consented for use of bio-sample data for the purpose of identifying methods for improving ADPKD diagnosis and management. De-identified DICOM image data from the TEMPO study [28] was transferred to our institution and converted to the NIFTI file format by the dcm2nii software. The images have a reconstructed matrix size of 256 × 256 × Z (with Z large enough to cover the full extent of the kidneys within the imaged volume). Image voxel sizes are most commonly on the order of 1.5 mm in-plane with typically 3–4 mm slice thicknesses.

Reference Standard TKV

The pycysticimage viewer toolkit was used by a trained medical imaging analyst, and the MIROS application was used to create initial kidney segmentations [24]. Afterwards, the segmentations were quality checked and manually corrected when needed. These segmentations were then used with the automated follow-up segmentation approach [25] to generate segmentations for all patient follow-up examinations. These segmentations were also quality checked and manually corrected when needed. The finalized segmentations were used as the reference standard segmentations by which we judged the accuracy of the fully automated approach.

Deep Learning Model

We developed a convolutional neural network architecture that is based on a semantic segmentation approach. All algorithms were written in Python, with the Keras library and Theano backend. For developing, training, and testing the neural network models, a high-performance GPU workstation (Exxact Corp., Fremont, CA) with 128 Gb of RAM and 4× NVIDIA GeForce GTX 1080, 8 Gb GPUs was used. The network architecture was first optimized on a small subset of the data (N = 200 cases). This optimization consisted of extracting 150 cases for training and validation, and then testing on the remaining 50 cases. Exhaustive grid search was then performed to test a range of networks that were shallower and deeper (in terms of layers), thinner and wider (in terms of number and size of kernels), as well as different activation functions (ReLU, tanh). Each network was run for 50 epochs. Based on the best performing network, 11 separate networks were trained (on different data subsets) in order to create an artificial multi-observer deep neural network for fully automated segmentation of polycystic kidneys in MR images. For training and validation, 2000 cases were randomly selected and the networks were each trained on different subsets of the data (80% training, 20% validation split). After training, the remaining 400 cases from those not used for training and validation were used for testing the automated segmentation approach.

Segmentation Post-processing

Following the segmentation map generated by the deep learning network, a routine to extract the two largest connected components was performed (i.e., the right and left kidneys). This was followed by an active contour and edge detection method in order to finalize the segmentation [24].

Evaluation of Automated Approach

Comparison statistics were generated from the reference standard segmentations and those made by the automated approach. These comparison statistics included voxel-by-voxel correlation-based metrics and comparison of total volume differences. For the voxel-by-voxel comparisons, a number of commonly used segmentation metrics were calculated. These include the Dice coefficient (or similarity index) that is defined as:
$$ \mathrm{Dice}=\frac{2\cdotp \mathrm{TP}}{2\cdotp \mathrm{TP}+\mathrm{FP}+\mathrm{FN}} $$
(1)
where TP is true positives (i.e., both reference standard and automated approach classified voxel as being the kidney), FP is false positives (i.e., automated approach falsely classified voxel as being the kidney), and FN are false negatives (i.e., automated approach falsely classified voxel as not being a part of the kidney), and the Jaccard coefficient (or overlap ratio), which is defined as:
$$ \mathrm{Jaccard}=\frac{\mathrm{TP}}{\mathrm{TP}+\mathrm{FP}+\mathrm{FN}} $$
(2)
Both of these indices vary within the range 0 to 1, where a value closer to 1 indicates a closer similarity between the two segmentations. Sensitivity, specificity, and precision are also reported based on voxel level statistics and the average maximum distance between the borders of the two segmentations was calculated (D mean). In addition, percent error of TKV as measured by the different approaches was calculated, and Bland-Altman analysis was performed to compare the automated measurement method to the reference standard.

Results

Optimized Network Performance

The optimal deep learning network architecture is graphically depicted in Fig. 1 and had a training Dice coefficient of 0.97 and a validation Dice coefficient of 0.96. Shown in Fig. 2 are the training and validation curves for the Dice coefficient calculated at each epoch.

Artificial Multi-observer Network

Next, 11 of these networks used the 2000 cases for training and validation. Each network was trained on a different subset of the cases. Each network was run for 100 epochs, and the best model was saved based on Dice coefficient. These 11 networks were then used in a majority voting scheme to test their ability to accurately segment the 400 test cases not seen during training and validation.

Visualization

Visual examples of the result of the multi-observer ensemble method are shown in Fig. 3 along with the reference standard segmentation.

Similarity Metrics

Table 1 summarizes the similarity statistics for the automated approach compared with the reference standard segmentations. The multi-observer ensemble method had an average percent volume error of 0.68%, a standard deviation of percent volume error of 2.2%, and worst case min = −8.1%, and max = 7.0%. In addition, similarity statistics were as follows: Jaccard = 0.94 ± 0.03, Dice = 0.97 ± 0.01, sensitivity = 0.97 ± 0.02, specificity = 0.99 ± 0.01, and precision = 0.98 ± 0.02 for the unseen test cases.
Table 1
Summary statistics for the automated approach compared with the gold standard. Shown are the results for an individual network, as well as the multi-observer approach
Statistic m ± SD [min/max]
Individual
Multi-observer
Jaccard
0.93 ± 0.03 [0.78/0.98]
0.94 ± 0.03 [0.85/0.98]
Dice
0.96 ± 0.02 [0.88 0.99]
0.97 ± 0.01 [0.92 0.99]
Sensitivity
0.96 ± 0.02 [0.79/0.99]
0.96 ± 0.02 [0.89/0.99]
Specificity
0.99 ± 0.01 [0.99/1.00]
0.99 ± 0.01 [0.99/1.00]
Precision
0.97 ± 0.02 [0.83/1.00]
0.97 ± 0.02 [0.88/1.00]
D mean
0.57 ± 0.46 [0.18/4.45]
0.49 ± 0.36 [0.17/3.69]
Volume difference %
−1.42 ± 2.75 [−18.90/15.72]
−0.65 ± 2.21 [−8.06/7.04]

Automated Measurement of TKV

Shown in Fig. 4 are the Bland-Altman analysis results for an individual network, and the multi-observer ensemble method. For the individual network and the multi-observer ensemble method, the m ± SD for the percent volume difference was −1.42 ± 2.75 and −0.65 ± 2.21, respectively.

Discussion

Implications for Research and Clinical Trials

High accuracy was obtained by the automated segmentation approach and performance on a level comparable to two different people performing segmentations (interobserver variability) was achieved (comparing the automated approach to the results generated manually). The combination of high accuracy without the necessity of human interaction is an important advance for both the clinical practice and research trials. In the case of research trials, the ability to efficiently and objectively detect small changes reduces the cost of performing a study and results in a much more rapid decision about a drug’s effectiveness. This current study can work harmoniously with our previous work for establishing a baseline measurement [24, 25], and automatically performing a reread of subsequent scans in the same patient [24, 25].
Our automatic segmentation approach offers a fast and accurate method to measure the TKV imaging biomarker for patients with diseased kidneys. This automation allows for robust study repeatability and removal of user bias in segmentations and measurement of TKV. The automatic segmentation has useful clinical applications such as following progression of the disease as well as judging the effectiveness of interventions. Once the network is trained, the automated approach segmentations are computed in the matter of minutes, whereas manual segmentations take 45–90 min. Thus, our method could enable the routine clinical use of TKV data.
An important strength of the developed approach is the success that was observed in terms of accurately handling liver cysts and major vasculature (e.g., renal artery and vein). This differentiation is a difficult task for humans and it appears that there are clearly identifiable imaging features that were derived that allowed the automated approach to successfully differentiate not only the liver from the kidney but also adjacent liver cysts from those pertaining to the kidney.
Lastly, having the ability to accurately and reproducibly segment the PKD kidney not only allows for measurement of TKV but also allows characterization of additional imaging biomarkers, such as calculating cystic burden or describing the “class” of cystic distribution [29], calculating imaging texture features [30], or measuring parameters derived from quantitative MRI acquisitions [31].

Limitations

While the developed approach appears very promising, there exist some limitations that may still require a final quality check by a trained imaging analyst. For instance, renal pelvis delineation appears highly variable. This we attribute to the known high variability of human readers in performing this task. Fortunately, the fact that an automated approach will come to the same conclusion every time will be a helpful step towards improving the reproducibility of TKV measurements. In addition, being able to simulate the results obtained from multiple people performing the segmentations removed outlier cases and resulted in a much more consistent and reproducible measurement of TKV.

Conclusion

We obtained high-quality segmentations of severely diseased organs matching human performance with a fully automated computer algorithm which simulates a multi-observer majority voting scheme. This method should be further explored for its utility in research studies and the clinical practice.

Acknowledgments

This work was supported by the PKD Foundation under grant 206g16a, the National Institute of Diabetes and Digestive and Kidney Diseases under NIH Grant/Award Number P30 DK090728 Mayo Translational PKD Center (MTPC), and the National Cancer Institute (NCI) under grant/award CA160045. Otsuka Pharmaceutical Development & Commercialization, Inc., Rockville, MD, USA provided the imaging data used in this study and also supplied partial funding support.

Compliance with Ethical Standards

Institutional review board approval was obtained for this study.
Open Access This article is distributed under the terms of the Creative Commons Attribution 4.0 International License (http://creativecommons.org/licenses/by/4.0/), which permits unrestricted use, distribution, and reproduction in any medium, provided you give appropriate credit to the original author(s) and the source, provide a link to the Creative Commons license, and indicate if changes were made.

Unsere Produktempfehlungen

e.Med Interdisziplinär

Kombi-Abonnement

Jetzt e.Med zum Sonderpreis bestellen!

Für Ihren Erfolg in Klinik und Praxis - Die beste Hilfe in Ihrem Arbeitsalltag

Mit e.Med Interdisziplinär erhalten Sie Zugang zu allen CME-Fortbildungen und Fachzeitschriften auf SpringerMedizin.de.

Jetzt bestellen und 100 € sparen!

e.Med Radiologie

Kombi-Abonnement

Mit e.Med Radiologie erhalten Sie Zugang zu CME-Fortbildungen des Fachgebietes Radiologie, den Premium-Inhalten der radiologischen Fachzeitschriften, inklusive einer gedruckten Radiologie-Zeitschrift Ihrer Wahl.

Literatur
1.
2.
Zurück zum Zitat Greenspan, H., B. van Ginneken, and R.M. Summers, Deep learning in medical imaging: overview and future promise of an exciting new technique. Ieee Transactions on Medical Imaging, 2016. 35(5): p. 1153–1159.CrossRef Greenspan, H., B. van Ginneken, and R.M. Summers, Deep learning in medical imaging: overview and future promise of an exciting new technique. Ieee Transactions on Medical Imaging, 2016. 35(5): p. 1153–1159.CrossRef
3.
Zurück zum Zitat Roth, H.R., et al. DeepOrgan: multi-level deep convolutional networks for automated pancreas segmentation. in Medical Image Computing and Computer-Assisted Intervention -- MICCAI 2015. 2015. Springer. Roth, H.R., et al. DeepOrgan: multi-level deep convolutional networks for automated pancreas segmentation. in Medical Image Computing and Computer-Assisted Intervention -- MICCAI 2015. 2015. Springer.
4.
Zurück zum Zitat Korfiatis, P., T.L. Kline, and B.J. Erickson, Automated segmentation of hyperintense regions in FLAIR MRI using deep learning. Tomography, 2016. 2(4): p. 334–340.CrossRefPubMedPubMedCentral Korfiatis, P., T.L. Kline, and B.J. Erickson, Automated segmentation of hyperintense regions in FLAIR MRI using deep learning. Tomography, 2016. 2(4): p. 334–340.CrossRefPubMedPubMedCentral
5.
Zurück zum Zitat Shin, H.C., et al., Deep convolutional neural networks for computer-aided detection: CNN architectures, dataset characteristics and transfer learning. IEEE Trans Med Imaging, 2016. 35(5): p. 1285–98.CrossRefPubMed Shin, H.C., et al., Deep convolutional neural networks for computer-aided detection: CNN architectures, dataset characteristics and transfer learning. IEEE Trans Med Imaging, 2016. 35(5): p. 1285–98.CrossRefPubMed
6.
Zurück zum Zitat Esteva, A., et al., Dermatologist-level classification of skin cancer with deep neural networks. Nature, 2017. 542(7639): p. 115–118.CrossRefPubMed Esteva, A., et al., Dermatologist-level classification of skin cancer with deep neural networks. Nature, 2017. 542(7639): p. 115–118.CrossRefPubMed
7.
Zurück zum Zitat Gabow, P.A., Autosomal dominant polycystic kidney disease. The New England journal of medicine, 1993. 329(5): p. 332–42.CrossRefPubMed Gabow, P.A., Autosomal dominant polycystic kidney disease. The New England journal of medicine, 1993. 329(5): p. 332–42.CrossRefPubMed
9.
Zurück zum Zitat Torres, V.E., P.C. Harris, and Y. Pirson, Autosomal dominant polycystic kidney disease. Lancet, 2007. 369(9569): p. 1287–301.CrossRefPubMed Torres, V.E., P.C. Harris, and Y. Pirson, Autosomal dominant polycystic kidney disease. Lancet, 2007. 369(9569): p. 1287–301.CrossRefPubMed
10.
Zurück zum Zitat Grantham, J.J., A.B. Chapman, and V.E. Torres, Volume progression in autosomal dominant polycystic kidney disease: the major factor determining clinical outcomes. Clinical journal of the American Society of Nephrology : CJASN, 2006. 1(1): p. 148–57.CrossRefPubMed Grantham, J.J., A.B. Chapman, and V.E. Torres, Volume progression in autosomal dominant polycystic kidney disease: the major factor determining clinical outcomes. Clinical journal of the American Society of Nephrology : CJASN, 2006. 1(1): p. 148–57.CrossRefPubMed
11.
Zurück zum Zitat Schrier, R.W., et al., Blood pressure in early autosomal dominant polycystic kidney disease. The New England journal of medicine, 2014. 371(24): p. 2255–66.CrossRefPubMedPubMedCentral Schrier, R.W., et al., Blood pressure in early autosomal dominant polycystic kidney disease. The New England journal of medicine, 2014. 371(24): p. 2255–66.CrossRefPubMedPubMedCentral
12.
Zurück zum Zitat Caroli, A., et al., Effect of longacting somatostatin analogue on kidney and cyst growth in autosomal dominant polycystic kidney disease (ALADIN): a randomised, placebo-controlled, multicentre trial. Lancet, 2013. 382(9903): p. 1485–95.CrossRefPubMed Caroli, A., et al., Effect of longacting somatostatin analogue on kidney and cyst growth in autosomal dominant polycystic kidney disease (ALADIN): a randomised, placebo-controlled, multicentre trial. Lancet, 2013. 382(9903): p. 1485–95.CrossRefPubMed
13.
Zurück zum Zitat Torres, V.E., et al., Tolvaptan in patients with autosomal dominant polycystic kidney disease. The New England journal of medicine, 2012. 367(25): p. 2407–18.CrossRefPubMedPubMedCentral Torres, V.E., et al., Tolvaptan in patients with autosomal dominant polycystic kidney disease. The New England journal of medicine, 2012. 367(25): p. 2407–18.CrossRefPubMedPubMedCentral
14.
Zurück zum Zitat Serra, A.L., et al., Sirolimus and kidney growth in autosomal dominant polycystic kidney disease. The New England journal of medicine, 2010. 363(9): p. 820–9.CrossRefPubMed Serra, A.L., et al., Sirolimus and kidney growth in autosomal dominant polycystic kidney disease. The New England journal of medicine, 2010. 363(9): p. 820–9.CrossRefPubMed
15.
Zurück zum Zitat Walz, G., et al., Everolimus in patients with autosomal dominant polycystic kidney disease. The New England journal of medicine, 2010. 363(9): p. 830–40.CrossRefPubMed Walz, G., et al., Everolimus in patients with autosomal dominant polycystic kidney disease. The New England journal of medicine, 2010. 363(9): p. 830–40.CrossRefPubMed
16.
17.
Zurück zum Zitat Liebau, M.C. and A.L. Serra, Looking at the (w)hole: magnet resonance imaging in polycystic kidney disease. Pediatric nephrology, 2013. 28(9): p. 1771–83.CrossRefPubMed Liebau, M.C. and A.L. Serra, Looking at the (w)hole: magnet resonance imaging in polycystic kidney disease. Pediatric nephrology, 2013. 28(9): p. 1771–83.CrossRefPubMed
18.
Zurück zum Zitat Fick-Brosnahan, G.M., et al., Relationship between renal volume growth and renal function in autosomal dominant polycystic kidney disease: a longitudinal study. American journal of kidney diseases : the official journal of the National Kidney Foundation, 2002. 39(6): p. 1127–34.CrossRef Fick-Brosnahan, G.M., et al., Relationship between renal volume growth and renal function in autosomal dominant polycystic kidney disease: a longitudinal study. American journal of kidney diseases : the official journal of the National Kidney Foundation, 2002. 39(6): p. 1127–34.CrossRef
19.
Zurück zum Zitat Grantham, J.J., et al., Volume progression in polycystic kidney disease. The New England journal of medicine, 2006. 354(20): p. 2122–30.CrossRefPubMed Grantham, J.J., et al., Volume progression in polycystic kidney disease. The New England journal of medicine, 2006. 354(20): p. 2122–30.CrossRefPubMed
20.
Zurück zum Zitat Irazabal, M.V., et al., Imaging classification of autosomal dominant polycystic kidney disease: a simple model for selecting patients for clinical trials. Journal of the American Society of Nephrology : JASN, 2014. Irazabal, M.V., et al., Imaging classification of autosomal dominant polycystic kidney disease: a simple model for selecting patients for clinical trials. Journal of the American Society of Nephrology : JASN, 2014.
21.
Zurück zum Zitat Bae, K.T., P.K. Commean, and J. Lee, Volumetric measurement of renal cysts and parenchyma using MRI: phantoms and patients with polycystic kidney disease. Journal of computer assisted tomography, 2000. 24(4): p. 614–9.CrossRefPubMed Bae, K.T., P.K. Commean, and J. Lee, Volumetric measurement of renal cysts and parenchyma using MRI: phantoms and patients with polycystic kidney disease. Journal of computer assisted tomography, 2000. 24(4): p. 614–9.CrossRefPubMed
22.
Zurück zum Zitat Kistler, A.D., et al., Increases in kidney volume in autosomal dominant polycystic kidney disease can be detected within 6 months. Kidney International, 2009. 75(2): p. 235–41.CrossRefPubMed Kistler, A.D., et al., Increases in kidney volume in autosomal dominant polycystic kidney disease can be detected within 6 months. Kidney International, 2009. 75(2): p. 235–41.CrossRefPubMed
23.
Zurück zum Zitat King, B.F., et al., Quantification and longitudinal trends of kidney, renal cyst, and renal parenchyma volumes in autosomal dominant polycystic kidney disease. Journal of the American Society of Nephrology : JASN, 2000. 11(8): p. 1505–11.PubMed King, B.F., et al., Quantification and longitudinal trends of kidney, renal cyst, and renal parenchyma volumes in autosomal dominant polycystic kidney disease. Journal of the American Society of Nephrology : JASN, 2000. 11(8): p. 1505–11.PubMed
24.
Zurück zum Zitat Kline, T.L., et al., Semiautomated segmentation of polycystic kidneys in T2-weighted MR images. American Journal of Roentgenology, 2016. 207(3): p. 605–613.CrossRefPubMedPubMedCentral Kline, T.L., et al., Semiautomated segmentation of polycystic kidneys in T2-weighted MR images. American Journal of Roentgenology, 2016. 207(3): p. 605–613.CrossRefPubMedPubMedCentral
25.
Zurück zum Zitat Kline, T.L., et al., Automatic total kidney volume measurement on follow-up magnetic resonance images to facilitate monitoring of autosomal dominant polycystic kidney disease progression. Nephrology, dialysis, transplantation : official publication of the European Dialysis and Transplant Association - European Renal Association, 2016. 31(2): p. 241–8. Kline, T.L., et al., Automatic total kidney volume measurement on follow-up magnetic resonance images to facilitate monitoring of autosomal dominant polycystic kidney disease progression. Nephrology, dialysis, transplantation : official publication of the European Dialysis and Transplant Association - European Renal Association, 2016. 31(2): p. 241–8.
26.
Zurück zum Zitat Shin, H.C., et al., Stacked autoencoders for unsupervised feature learning and multiple organ detection in a pilot study using 4D patient data. IEEE Trans Pattern Anal Mach Intell, 2013. 35(8): p. 1930–43.CrossRefPubMed Shin, H.C., et al., Stacked autoencoders for unsupervised feature learning and multiple organ detection in a pilot study using 4D patient data. IEEE Trans Pattern Anal Mach Intell, 2013. 35(8): p. 1930–43.CrossRefPubMed
27.
Zurück zum Zitat Ronneberger, O., P. Fischer, and T. Brox, U-Net: convolutional networks for biomedical image segmentation, in Medical Image Computing and Computer-Assisted Intervention – MICCAI 2015: 18th International Conference, Munich, Germany, October 5–9, 2015, Proceedings, Part III, N. Navab, et al., Editors. 2015, Springer International Publishing: Cham. p. 234–241. Ronneberger, O., P. Fischer, and T. Brox, U-Net: convolutional networks for biomedical image segmentation, in Medical Image Computing and Computer-Assisted Intervention – MICCAI 2015: 18th International Conference, Munich, Germany, October 5–9, 2015, Proceedings, Part III, N. Navab, et al., Editors. 2015, Springer International Publishing: Cham. p. 234–241.
28.
Zurück zum Zitat Torres, V.E., et al., Rationale and design of the TEMPO (Tolvaptan Efficacy and Safety in Management of Autosomal Dominant Polycystic Kidney Disease and its Outcomes) 3-4 Study. American journal of kidney diseases : the official journal of the National Kidney Foundation, 2011. 57(5): p. 692–9.CrossRef Torres, V.E., et al., Rationale and design of the TEMPO (Tolvaptan Efficacy and Safety in Management of Autosomal Dominant Polycystic Kidney Disease and its Outcomes) 3-4 Study. American journal of kidney diseases : the official journal of the National Kidney Foundation, 2011. 57(5): p. 692–9.CrossRef
29.
Zurück zum Zitat Irazabal, M.V., et al., Imaging classification of autosomal dominant polycystic kidney disease: a simple model for selecting patients for clinical trials. Journal of the American Society of Nephrology : JASN, 2015. 26(1): p. 160–72.CrossRefPubMed Irazabal, M.V., et al., Imaging classification of autosomal dominant polycystic kidney disease: a simple model for selecting patients for clinical trials. Journal of the American Society of Nephrology : JASN, 2015. 26(1): p. 160–72.CrossRefPubMed
30.
Zurück zum Zitat Kline, T.L., et al., Image texture features predict renal function decline in autosomal polycystic kidney disease patients. Kidney international, 2017. in press. Kline, T.L., et al., Image texture features predict renal function decline in autosomal polycystic kidney disease patients. Kidney international, 2017. in press.
31.
Zurück zum Zitat Kline, T.L., et al., Utilizing magnetization transfer imaging to investigate tissue remodeling in a murine model of autosomal dominant polycystic kidney disease. Magnetic resonance in medicine, 2016. 75(4): p. 1466–1473.CrossRefPubMed Kline, T.L., et al., Utilizing magnetization transfer imaging to investigate tissue remodeling in a murine model of autosomal dominant polycystic kidney disease. Magnetic resonance in medicine, 2016. 75(4): p. 1466–1473.CrossRefPubMed
Metadaten
Titel
Performance of an Artificial Multi-observer Deep Neural Network for Fully Automated Segmentation of Polycystic Kidneys
verfasst von
Timothy L. Kline
Panagiotis Korfiatis
Marie E. Edwards
Jaime D. Blais
Frank S. Czerwiec
Peter C. Harris
Bernard F. King
Vicente E. Torres
Bradley J. Erickson
Publikationsdatum
26.05.2017
Verlag
Springer International Publishing
Erschienen in
Journal of Imaging Informatics in Medicine / Ausgabe 4/2017
Print ISSN: 2948-2925
Elektronische ISSN: 2948-2933
DOI
https://doi.org/10.1007/s10278-017-9978-1

Weitere Artikel der Ausgabe 4/2017

Journal of Digital Imaging 4/2017 Zur Ausgabe

Mammakarzinom: Brustdichte beeinflusst rezidivfreies Überleben

26.05.2024 Mammakarzinom Nachrichten

Frauen, die zum Zeitpunkt der Brustkrebsdiagnose eine hohe mammografische Brustdichte aufweisen, haben ein erhöhtes Risiko für ein baldiges Rezidiv, legen neue Daten nahe.

„Übersichtlicher Wegweiser“: Lauterbachs umstrittener Klinik-Atlas ist online

17.05.2024 Klinik aktuell Nachrichten

Sie sei „ethisch geboten“, meint Gesundheitsminister Karl Lauterbach: mehr Transparenz über die Qualität von Klinikbehandlungen. Um sie abzubilden, lässt er gegen den Widerstand vieler Länder einen virtuellen Klinik-Atlas freischalten.

Klinikreform soll zehntausende Menschenleben retten

15.05.2024 Klinik aktuell Nachrichten

Gesundheitsminister Lauterbach hat die vom Bundeskabinett beschlossene Klinikreform verteidigt. Kritik an den Plänen kommt vom Marburger Bund. Und in den Ländern wird über den Gang zum Vermittlungsausschuss spekuliert.

Darf man die Behandlung eines Neonazis ablehnen?

08.05.2024 Gesellschaft Nachrichten

In einer Leseranfrage in der Zeitschrift Journal of the American Academy of Dermatology möchte ein anonymer Dermatologe bzw. eine anonyme Dermatologin wissen, ob er oder sie einen Patienten behandeln muss, der eine rassistische Tätowierung trägt.

Update Radiologie

Bestellen Sie unseren Fach-Newsletter und bleiben Sie gut informiert.