SlideShare a Scribd company logo
8
Most read
9
Most read
12
Most read
Applying Deep Learning
Techniques in Automated
Analysis of CT scan
images for the Detection
and Localization of Renal
Cell Carcinoma
What is Renal Cell Carcinoma?
Risk factors of Renal Cell Carcinoma
Smoking
Obesity
Hypertension
Occupational exposure (metal, chemical, rubber, and printing industries)
Cadmium exposure
Radiation therapy
Dietary (high fat/protein and low fruits/vegetables)
Symptoms and
Treatment
• Flank Pain
• Hematuria
• Palpable Mass
Related work
Koo, J. C., Hum, Y. C., Lai, K. W., Yap, W. S., Manickam, S., & Tee, Y. K. (2022, March). Deep Machine Learning Histopathological Image Analysis for
Renal Cancer Detection. In Proceedings of the 8th International Conference on Computing and Artificial Intelligence (pp. 657-663).
Xu, L., Yang, C., Zhang, F., Cheng, X., Wei, Y., Fan, S., ... & Song, B. (2022). Deep Learning Using CT Images to Grade Clear Cell Renal Cell
Carcinoma: Development and Validation of a Prediction Model. Cancers, 14(11), 2574.
Gharaibeh, M., Alzu’bi, D., Abdullah, M., Hmeidi, I., Al Nasar, M. R., Abualigah, L., & Gandomi, A. H. (2022). Radiology imaging scans for early diagnosis
of kidney tumors: a review of data analytics-based machine learning and deep learning approaches. Big Data and Cognitive Computing, 6(1), 29.
Uhm, K. H., Jung, S. W., Choi, M. H., Shin, H. K., Yoo, J. I., Oh, S. W., ... & Ko, S. J. (2021). Deep learning for end-to-end kidney cancer diagnosis on
multi-phase abdominal computed tomography. NPJ Precision Oncology, 5(1), 1-6.
Nikpanah, M., Xu, Z., Jin, D., Farhadi, F., Saboury, B., Ball, M. W., ... & Malayeri, A. A. (2021). A deep-learning based artificial intelligence (AI) approach
for differentiation of clear cell renal cell carcinoma from oncocytoma on multi-phasic MRI. Clinical Imaging, 77, 291-298.
Lee, S., Jung, J., Park, I., Park, K., & Kim, D. S. (2020). A deep learning and similarity-based hierarchical clustering approach for pathological stage
prediction of papillary renal cell carcinoma. Computational and structural biotechnology journal, 18, 2639-2646.
Shon, H. S., Batbaatar, E., Kim, K. O., Cha, E. J., & Kim, K. A. (2020). Classification of kidney cancer data using cost-sensitive hybrid deep learning
approach. Symmetry, 12(1), 154.
Fuat, T. Ü. R. K., Murat, L. Ü. Y., & BARIŞÇI, N. (2019). Machine Learning of Kidney Tumors and Diagnosis and Classification by Deep Learning
Methods. International Journal of Engineering Research and Development, 11(3), 802-812.
Kaur, G., Kalia, G., & Sondhi, P. (2019). Artificial Neural Network Based Detection of Renal Tumors using CT Scan Image Processing.
Tuncer, S. A., & Alkan, A. (2018). A decision support system for detection of the renal cell cancer in the kidney. Measurement, 123, 298-303.
Deep learning for end-to-end kidney cancer diagnosis on
multi-phase abdominal computed tomography
Limitations of the previous work
There are strong overlaps in image-level features between renal tumor subtypes, which make subtype
classification difficult and cause inter-observer variation.
In most prior studies on tumor classification, lesions were classified into only two classes (benign/malignant) or
the three RCC classes (ccRCC, pRCC, and chRCC).
The previous diagnosis systems required the manual lesion identification process, in which the regions of
tumors are drawn by radiologists.
Database
A large dataset consisting of 1035 CT images from 308 patients
who underwent nephrectomy for renal tumors between 2003 and
2020.
This dataset contains five major subtypes of renal tumors including
both benign and malignant tumors: oncocytoma, AML, chRCC,
pRCC, and ccRCC.
Table presenting Patient demographics, subtype, and tumor
size distributions for training/test dataset.
Methodology
• The framework(Figure 1) takes a multi-phase CT scan as
an input.
• The framework first produces the kidney and tumor
masks for each phase using a shared 3D segmentation
model.
• The framework then aligns the tumor regions across
phases and outputs a probability distribution over five
subtype classes of renal tumor through a classification
model.
• In the segmentation results, the green and magenta
represent the kidney and tumor, respectively.
The framework first extracts the kidney and tumor masks from the whole CT volume for each phase using
the three-dimensional (3D) CNN-based segmentation model and voxel-level segmentation labels were
used to train this model.
Then, the CT volumes of different phases are aligned based on the segmented regions, and finally, the
CNN-based classification model analyzes the aligned tumor regions and predicts the subtype.
Postoperative pathology- confirmed tumor labels were used to train the classification model.
For each patient, multiple phases were acquired at different times such as non-contrast, arterial (20–30s
after contrast injection), portal (60–70s), and delayed (>180 s) phases. Voxel-level segmentation labels
are obtained for each CT scan, where trained annotators manually delineated kidneys and tumors in the
images and then a radiologist (experience of 11 years) refined the annotations.
Model development
The proposed model has three main components: kidney and tumor segmentation, multi-phase alignment,
and tumor subtype classification.
3D U-Net(trained on 848 CT scans including four different contrast phases) used for kidney and tumor
segmentation, where the network classifies each voxel in a CT volume into three classes: background,
kidney, and tumor.
The CT volumes were resampled to a 1.5 × 1.5 × 3 mm3 voxel size. The network parameters were then
optimized using stochastic gradient descent on the sum of the cross-entropy and Dice loss function. The
hyperparameters required for training, such as the batch size and learning rate, were chosen by nnU-Net.
The transformation parameters were iteratively updated to align the kidney and tumor masks of the two
phases until convergence. Dice loss was minimized using an Adam optimizer with a learning rate of 0.01.
ResNet-101 is used to classify the pathological subtypes of renal tumor. For each case, the slice with the
largest segmented tumor area was extracted from each phase of the CT scans, and the rectangular region
containing the tumor region was then cropped from each extracted slice. The cropped images were then
resized to 224 × 224 pixels and concatenated to form a 3-channel image, which was used as the input to the
classification network.
In the testing stage, the results of the network was averaged from three 3-channel images. ResNet-101
was initialized with the weights pre- trained on ImageNet ,and added a 1 × 1 × 1 convolutional layer at
the beginning of the network and changed the last fully connected layer to produce a distribution over five
classes. The network was trained using the cross-entropy loss with stochastic gradient descent. The final
component outputs the probability for each subtype class.
Performance of segmentation on the test dataset
They evaluated the segmentation model by measuring the Dice similarity coefficient (DSC), which
quantifies the volume overlap between manual annotations and the masks produced by the model for the
kidney and tumor regions. The average DSCs for the kidney and tumor were obtained as 0.969±0.014
and 0.856± 0.131, respectively.
Performance
Figure 2a shows the receiver operating
characteristic (ROC) curves of the model and
the performance of the radiologists.
The area under the curves (AUCs) with 95%
confidence interval (CI) for each curve.
The model achieved an average AUC of 0.889
(95% CI, 0.827–0.945), and exceeded both the
top-1 and top- 2 performance of the radiologists
in most cases.
In particular, the points indicating the average
performance of the radiologists fell on or below
the ROC curves of the model for all subtype
classes.
Figure 2b shows the confusion matrices for the model and all individual radiologists. It was
observed that chRCC, AML, and oncocytoma were frequently misclassified as ccRCC by the
radiologists, whereas they were more correctly classified by the model. The model achieved
the accuracy of 0.72, exceeding both the average top-1 and top-2 accuracy of radiologists,
which were 0.42 and 0.56, respectively.
Compared to the average radiologist, the
model demonstrated statistically significant
improvements in top-1 sensitivity (P < 0.05) for
chRCC and AML, and even in top-2 sensitivity
(P < 0.05) for AML (Fig. 2c) and there is
significant improvements in specificity (P<0.05)
for ccRCC and oncocytoma (Fig. 2d).

More Related Content

PDF
Cyberknife medanta
PDF
Deep Learning for Computer Vision: Medical Imaging (UPC 2016)
POTX
Medical image registration ppt.potx
PPT
Image segmentation ppt
PPTX
Image reconstruction
PPT
introducción a Machine Learning
PDF
Explainable AI (XAI) - A Perspective
PPTX
The Role of Computers in Medical Physics
Cyberknife medanta
Deep Learning for Computer Vision: Medical Imaging (UPC 2016)
Medical image registration ppt.potx
Image segmentation ppt
Image reconstruction
introducción a Machine Learning
Explainable AI (XAI) - A Perspective
The Role of Computers in Medical Physics

What's hot (20)

PDF
Lec7: Medical Image Segmentation (I) (Radiology Applications of Segmentation,...
PDF
Lec15: Medical Image Registration (Introduction)
PPT
Medical image analysis
PPT
SPECT: Single Photon Emission Computed Tomography
PPTX
Features image processing and Extaction
PDF
Medical image analysis
PDF
Applying Deep Learning to Transform Breast Cancer Diagnosis
PPTX
Facemask_project (1).pptx
PPTX
IMAGE SEGMENTATION.
PDF
Breast cancerdetection IE594 Project Report
PDF
Tomotherapy
PPTX
Active contour segmentation
PPTX
Brain Tumor Detection Using Deep Neural Network.pptx
PDF
Image Guided Radiation Therapy (IGRT)
PPTX
Total body irradiation
PPTX
Brain Tumor Segmentation using Enhanced U-Net Model with Empirical Analysis
PPT
Medical image processing studies
PDF
Lec3: Pre-Processing Medical Images
PDF
4 Dimensionality reduction (PCA & t-SNE)
PPT
accidents with radiotherapy
Lec7: Medical Image Segmentation (I) (Radiology Applications of Segmentation,...
Lec15: Medical Image Registration (Introduction)
Medical image analysis
SPECT: Single Photon Emission Computed Tomography
Features image processing and Extaction
Medical image analysis
Applying Deep Learning to Transform Breast Cancer Diagnosis
Facemask_project (1).pptx
IMAGE SEGMENTATION.
Breast cancerdetection IE594 Project Report
Tomotherapy
Active contour segmentation
Brain Tumor Detection Using Deep Neural Network.pptx
Image Guided Radiation Therapy (IGRT)
Total body irradiation
Brain Tumor Segmentation using Enhanced U-Net Model with Empirical Analysis
Medical image processing studies
Lec3: Pre-Processing Medical Images
4 Dimensionality reduction (PCA & t-SNE)
accidents with radiotherapy
Ad

Similar to Applying Deep Learning Techniques in Automated Analysis of CT scan images for the Detection and Localization of Renal Cell Carcinoma.pptx (20)

PDF
Automated detection of kidney masses lesions using a deep learning approach
PDF
Artificial Neural Network Based Detection of Renal Tumors using CT Scan Image...
PPTX
Renal cell carcinoma
PDF
Radiogenomics of renal cell carcinoma
PPTX
imaging in RCC
PPTX
Renal cell carcinoma
PPTX
rccclass-160824074458.pptx
PDF
Survey on Automatic Kidney Lesion Detection using Deep Learning
PPTX
Renal cell carcinoma
PDF
Identifying liver cancer cells using cascaded convolutional neural network an...
PPTX
Renal Tumour Imaging
PPTX
Renal malignancy
PDF
Utilization of convolutional neural network in image interpretation technique...
PDF
[ASGO 2019] Artificial Intelligence in Medicine
PDF
Generalized deep learning model for Classification of Gastric, Colon and Rena...
PDF
Optical MRI imaging based on computer vision for extracting and analyzing mor...
PPTX
renal cell carcinoma radiology
PPT
5 renal tumor
PPTX
Renal tumors.pptx
PPTX
Last revision-kidney cancer and cases.pptx
Automated detection of kidney masses lesions using a deep learning approach
Artificial Neural Network Based Detection of Renal Tumors using CT Scan Image...
Renal cell carcinoma
Radiogenomics of renal cell carcinoma
imaging in RCC
Renal cell carcinoma
rccclass-160824074458.pptx
Survey on Automatic Kidney Lesion Detection using Deep Learning
Renal cell carcinoma
Identifying liver cancer cells using cascaded convolutional neural network an...
Renal Tumour Imaging
Renal malignancy
Utilization of convolutional neural network in image interpretation technique...
[ASGO 2019] Artificial Intelligence in Medicine
Generalized deep learning model for Classification of Gastric, Colon and Rena...
Optical MRI imaging based on computer vision for extracting and analyzing mor...
renal cell carcinoma radiology
5 renal tumor
Renal tumors.pptx
Last revision-kidney cancer and cases.pptx
Ad

Recently uploaded (20)

PDF
Basic Mud Logging Guide for educational purpose
PDF
Insiders guide to clinical Medicine.pdf
PDF
3rd Neelam Sanjeevareddy Memorial Lecture.pdf
PDF
Classroom Observation Tools for Teachers
PDF
Supply Chain Operations Speaking Notes -ICLT Program
PDF
01-Introduction-to-Information-Management.pdf
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PPTX
Institutional Correction lecture only . . .
PDF
STATICS OF THE RIGID BODIES Hibbelers.pdf
PDF
FourierSeries-QuestionsWithAnswers(Part-A).pdf
PPTX
Microbial diseases, their pathogenesis and prophylaxis
PDF
Sports Quiz easy sports quiz sports quiz
PPTX
Lesson notes of climatology university.
PPTX
Cell Types and Its function , kingdom of life
PDF
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
PPTX
master seminar digital applications in india
PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PDF
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
PPTX
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
PDF
102 student loan defaulters named and shamed – Is someone you know on the list?
Basic Mud Logging Guide for educational purpose
Insiders guide to clinical Medicine.pdf
3rd Neelam Sanjeevareddy Memorial Lecture.pdf
Classroom Observation Tools for Teachers
Supply Chain Operations Speaking Notes -ICLT Program
01-Introduction-to-Information-Management.pdf
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
Institutional Correction lecture only . . .
STATICS OF THE RIGID BODIES Hibbelers.pdf
FourierSeries-QuestionsWithAnswers(Part-A).pdf
Microbial diseases, their pathogenesis and prophylaxis
Sports Quiz easy sports quiz sports quiz
Lesson notes of climatology university.
Cell Types and Its function , kingdom of life
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
master seminar digital applications in india
Pharmacology of Heart Failure /Pharmacotherapy of CHF
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
102 student loan defaulters named and shamed – Is someone you know on the list?

Applying Deep Learning Techniques in Automated Analysis of CT scan images for the Detection and Localization of Renal Cell Carcinoma.pptx

  • 1. Applying Deep Learning Techniques in Automated Analysis of CT scan images for the Detection and Localization of Renal Cell Carcinoma
  • 2. What is Renal Cell Carcinoma?
  • 3. Risk factors of Renal Cell Carcinoma Smoking Obesity Hypertension Occupational exposure (metal, chemical, rubber, and printing industries) Cadmium exposure Radiation therapy Dietary (high fat/protein and low fruits/vegetables)
  • 4. Symptoms and Treatment • Flank Pain • Hematuria • Palpable Mass
  • 5. Related work Koo, J. C., Hum, Y. C., Lai, K. W., Yap, W. S., Manickam, S., & Tee, Y. K. (2022, March). Deep Machine Learning Histopathological Image Analysis for Renal Cancer Detection. In Proceedings of the 8th International Conference on Computing and Artificial Intelligence (pp. 657-663). Xu, L., Yang, C., Zhang, F., Cheng, X., Wei, Y., Fan, S., ... & Song, B. (2022). Deep Learning Using CT Images to Grade Clear Cell Renal Cell Carcinoma: Development and Validation of a Prediction Model. Cancers, 14(11), 2574. Gharaibeh, M., Alzu’bi, D., Abdullah, M., Hmeidi, I., Al Nasar, M. R., Abualigah, L., & Gandomi, A. H. (2022). Radiology imaging scans for early diagnosis of kidney tumors: a review of data analytics-based machine learning and deep learning approaches. Big Data and Cognitive Computing, 6(1), 29. Uhm, K. H., Jung, S. W., Choi, M. H., Shin, H. K., Yoo, J. I., Oh, S. W., ... & Ko, S. J. (2021). Deep learning for end-to-end kidney cancer diagnosis on multi-phase abdominal computed tomography. NPJ Precision Oncology, 5(1), 1-6. Nikpanah, M., Xu, Z., Jin, D., Farhadi, F., Saboury, B., Ball, M. W., ... & Malayeri, A. A. (2021). A deep-learning based artificial intelligence (AI) approach for differentiation of clear cell renal cell carcinoma from oncocytoma on multi-phasic MRI. Clinical Imaging, 77, 291-298. Lee, S., Jung, J., Park, I., Park, K., & Kim, D. S. (2020). A deep learning and similarity-based hierarchical clustering approach for pathological stage prediction of papillary renal cell carcinoma. Computational and structural biotechnology journal, 18, 2639-2646. Shon, H. S., Batbaatar, E., Kim, K. O., Cha, E. J., & Kim, K. A. (2020). Classification of kidney cancer data using cost-sensitive hybrid deep learning approach. Symmetry, 12(1), 154. Fuat, T. Ü. R. K., Murat, L. Ü. Y., & BARIŞÇI, N. (2019). Machine Learning of Kidney Tumors and Diagnosis and Classification by Deep Learning Methods. International Journal of Engineering Research and Development, 11(3), 802-812. Kaur, G., Kalia, G., & Sondhi, P. (2019). Artificial Neural Network Based Detection of Renal Tumors using CT Scan Image Processing. Tuncer, S. A., & Alkan, A. (2018). A decision support system for detection of the renal cell cancer in the kidney. Measurement, 123, 298-303.
  • 6. Deep learning for end-to-end kidney cancer diagnosis on multi-phase abdominal computed tomography Limitations of the previous work There are strong overlaps in image-level features between renal tumor subtypes, which make subtype classification difficult and cause inter-observer variation. In most prior studies on tumor classification, lesions were classified into only two classes (benign/malignant) or the three RCC classes (ccRCC, pRCC, and chRCC). The previous diagnosis systems required the manual lesion identification process, in which the regions of tumors are drawn by radiologists.
  • 7. Database A large dataset consisting of 1035 CT images from 308 patients who underwent nephrectomy for renal tumors between 2003 and 2020. This dataset contains five major subtypes of renal tumors including both benign and malignant tumors: oncocytoma, AML, chRCC, pRCC, and ccRCC. Table presenting Patient demographics, subtype, and tumor size distributions for training/test dataset.
  • 8. Methodology • The framework(Figure 1) takes a multi-phase CT scan as an input. • The framework first produces the kidney and tumor masks for each phase using a shared 3D segmentation model. • The framework then aligns the tumor regions across phases and outputs a probability distribution over five subtype classes of renal tumor through a classification model. • In the segmentation results, the green and magenta represent the kidney and tumor, respectively.
  • 9. The framework first extracts the kidney and tumor masks from the whole CT volume for each phase using the three-dimensional (3D) CNN-based segmentation model and voxel-level segmentation labels were used to train this model. Then, the CT volumes of different phases are aligned based on the segmented regions, and finally, the CNN-based classification model analyzes the aligned tumor regions and predicts the subtype. Postoperative pathology- confirmed tumor labels were used to train the classification model. For each patient, multiple phases were acquired at different times such as non-contrast, arterial (20–30s after contrast injection), portal (60–70s), and delayed (>180 s) phases. Voxel-level segmentation labels are obtained for each CT scan, where trained annotators manually delineated kidneys and tumors in the images and then a radiologist (experience of 11 years) refined the annotations.
  • 10. Model development The proposed model has three main components: kidney and tumor segmentation, multi-phase alignment, and tumor subtype classification. 3D U-Net(trained on 848 CT scans including four different contrast phases) used for kidney and tumor segmentation, where the network classifies each voxel in a CT volume into three classes: background, kidney, and tumor. The CT volumes were resampled to a 1.5 × 1.5 × 3 mm3 voxel size. The network parameters were then optimized using stochastic gradient descent on the sum of the cross-entropy and Dice loss function. The hyperparameters required for training, such as the batch size and learning rate, were chosen by nnU-Net. The transformation parameters were iteratively updated to align the kidney and tumor masks of the two phases until convergence. Dice loss was minimized using an Adam optimizer with a learning rate of 0.01. ResNet-101 is used to classify the pathological subtypes of renal tumor. For each case, the slice with the largest segmented tumor area was extracted from each phase of the CT scans, and the rectangular region containing the tumor region was then cropped from each extracted slice. The cropped images were then resized to 224 × 224 pixels and concatenated to form a 3-channel image, which was used as the input to the classification network.
  • 11. In the testing stage, the results of the network was averaged from three 3-channel images. ResNet-101 was initialized with the weights pre- trained on ImageNet ,and added a 1 × 1 × 1 convolutional layer at the beginning of the network and changed the last fully connected layer to produce a distribution over five classes. The network was trained using the cross-entropy loss with stochastic gradient descent. The final component outputs the probability for each subtype class. Performance of segmentation on the test dataset They evaluated the segmentation model by measuring the Dice similarity coefficient (DSC), which quantifies the volume overlap between manual annotations and the masks produced by the model for the kidney and tumor regions. The average DSCs for the kidney and tumor were obtained as 0.969±0.014 and 0.856± 0.131, respectively.
  • 12. Performance Figure 2a shows the receiver operating characteristic (ROC) curves of the model and the performance of the radiologists. The area under the curves (AUCs) with 95% confidence interval (CI) for each curve. The model achieved an average AUC of 0.889 (95% CI, 0.827–0.945), and exceeded both the top-1 and top- 2 performance of the radiologists in most cases. In particular, the points indicating the average performance of the radiologists fell on or below the ROC curves of the model for all subtype classes.
  • 13. Figure 2b shows the confusion matrices for the model and all individual radiologists. It was observed that chRCC, AML, and oncocytoma were frequently misclassified as ccRCC by the radiologists, whereas they were more correctly classified by the model. The model achieved the accuracy of 0.72, exceeding both the average top-1 and top-2 accuracy of radiologists, which were 0.42 and 0.56, respectively.
  • 14. Compared to the average radiologist, the model demonstrated statistically significant improvements in top-1 sensitivity (P < 0.05) for chRCC and AML, and even in top-2 sensitivity (P < 0.05) for AML (Fig. 2c) and there is significant improvements in specificity (P<0.05) for ccRCC and oncocytoma (Fig. 2d).