Preprint
Article

A Novel Landmark-Based Semi-Supervised Deep Learning Method for Aneurysm Detection Using 3D TOF-MRA

Altmetrics

Downloads

97

Views

53

Comments

0

Submitted:

07 May 2024

Posted:

08 May 2024

You are already at the latest version

Alerts
Abstract
This study presents a novel semi-supervised deep learning method utilizing 3D TOF-MRA images for the detection of brain aneurysms, employing landmark-based techniques that mimic radiologist practices to enhance detection accuracy and efficiency.
Keywords: 
Subject: Physical Sciences  -   Radiation and Radiography

Methods and Materials

Instead of observing the entire space of the image, the human radiologist only carefully observes the area where aneurysm is frequently found on the vessel [1,2]. Hence, we mimicked these radiologists' behavior patterns to make deep learning models train the landmarks on the vessels where aneurysm is likely to occur. The easiest way to obtain a deep learning model that predicts landmark is to train the model using human-made landmark ground truth.
Definition of human-made landmark ground truth: The human radiologist reviewed the patient's MRA image and segmented it by the name of the vessel (ICA, ACA, MCA, etc.) [3] where aneurysm may occur. As shown in Figure 1, the ground truth landmark should indicate not only the area with aneurysm but also all areas where aneurysm can occur.
Dataset: 3D TOF-MRA images were retried from one Korean hospital to train and validate a proposed model. Multiple radiologists independently read the presence or absence of cerebral aneurysms (positive and negative), the number of cerebral aneurysms, and location. Only images with consistent opinions of radiologists were selected and used, the final number of selected data is 550. Of the 550 images, 50 images are without aneurysms, 426 images have 1 aneurysm per image, 60 images have 2 aneurysm per image, 12 images have 3 aneurysm per image, 1 image has 4 aneurysm per image, 1 image has 5 aneurysm per image. 55 images, which is 10%, were randomly selected and used as a validation only set, and there are a total of 55 aneurysm included.
However, due to the difficulty of obtaining the human-made landmark ground truth, we propose a semi-supervised learning [4]-based automatic landmark generation method that uses only aneurysm-specific ground truth.
The proposed method consists of two steps: the first step is clustering the aneurysm-positive position of all MRA images on the 3D space. This cluster center is used as the initial location of the landmark for the deep learning model. The second step is building the deep learning model that outputs predicted landmarks, which do not overlap but simultaneously contain all the aneurysms well. Additionally, we propose two novel loss functions for the landmark-generated model, described in detail below.
Clustering: Aneurysm-positive position does not occur in all the areas of the MRA images, but in specific vascular areas. The first step is to group these regions into several subgroups that share common properties. We grouped the aneurysm-positive locations close to Euclidean distance using k-means clustering [5]. As a result, sub-groups are bound with similar blood vessels shape as shown in Figure 2.
Training a deep Learning model: We create a landmark that contain areas where aneurism is likely to exist using a deep learning model. By considering the shape of blood vessels, the deep learning model can predict more precisely where aneurysms are likely to occur. The deep learning model uses a dilated residual network [6] as shown in Figure 3, it receives the MRA image resized to 256 K is the number of landmarks and R is the size of the landmark. We select experimentally suitable K and R, and described the results in the section of Results or Findings.
We trained the deep learning model in a semi-supervised manner by proposed the custom loss functions because we did not have the ground truth landmark label. The deep learning model initially mimicked a sub-group simply made of k-means clustering then trains using the proposed custom loss term as shown in Figure 4.
L1 makes a landmark box B contain aneurysm-positive location A, which is not yet included in any landmark. For example, as shown in Figure 5, B1 already contains A1 so it remains in the current state. B2 is not contained any A so it moves to a position close to A2.
L2 makes a landmark box B which does not overlap each other. As shown in Figure 6, boxes with overlapping areas are pushed away from each other. Boxes where overlapping areas do not exist, are not affected.
The training process is as shown in Figure 7, and the landmark is located on a vessel where aneurysm is likely to occur.

Experiment Results

Assess the outcomes of landmark extraction utilizing the introduced model, followed by the training of a distinct detection AI. Estimate the algorithm's sensitivity and false positive (FP) rate through a comparison of the detection outcomes as predicted by the AI against the bounding box outcomes annotated with the reference standard in Intersection over Unions (IoUs) [7]. A per-lesion IoU exceeding 0.01 is classified as a per-lesion detection positive. In contrast, a per-lesion IoU not surpassing 0.01 is regarded as a per-lesion detection negative. Within the framework of performance evaluation on the Validation only dataset, the derived metrics were Sensitivity of 0.83, FP rate of 3.4, and Dice Similarity Coefficient (DSC) [8] of 0.66.

References

  1. Yoon, N.K.; McNally, S.; Taussky, P.; et al. Imaging of cerebral aneurysms: a clinical perspective. Neurovasc Imaging 2016, 2, 2–6. [Google Scholar] [CrossRef]
  2. https://appliedradiology.com/articles/aneurysmsall-you-need-to-know.
  3. https://radiopaedia.org/articles/middle-cerebral-artery.
  4. https://www.ibm.com/topics/semi-supervised-learning.
  5. Krishna, K.; Narasimha Murty, M. Genetic K-means algorithm. IEEE Transactions on Systems, Man, and Cybernetics, Part B (Cybernetics) 1999, 29.3, 433–439. [Google Scholar] [CrossRef] [PubMed]
  6. Zagoruyko, Sergey, and Nikos Komodakis. Wide residual networks. arXiv 2016, arXiv:1605.07146. [Google Scholar]
  7. van Beers, Floris, et al. Deep neural networks with intersection over union loss for binary image segmentation. In Proceedings of the 8th international conference on pattern recognition applications and methods. SciTePress: 2019.
  8. Thada, Vikas, and Vivek Jaglan. Comparison of jaccard, dice, cosine similarity coefficient to find best fitness value for web retrieved documents using genetic algorithm. International Journal of Innovations in Engineering and Technology 2013, 2.4, 202–205.
Figure 1. Original MRA(left), Manual segmentation label for cerebral aneurysms by specialist in radiology(middle), Ground truth landmark example(right).
Figure 1. Original MRA(left), Manual segmentation label for cerebral aneurysms by specialist in radiology(middle), Ground truth landmark example(right).
Preprints 105800 g001
Figure 2. Clustering the anurysm point with kmeans.
Figure 2. Clustering the anurysm point with kmeans.
Preprints 105800 g002
Figure 3. Overview of the proposed deep learning structure.
Figure 3. Overview of the proposed deep learning structure.
Preprints 105800 g003
Figure 4. Proposed loss term for train deep learning model.
Figure 4. Proposed loss term for train deep learning model.
Preprints 105800 g004
Figure 5. Example of a landmark box adjusting to loss term 1.
Figure 5. Example of a landmark box adjusting to loss term 1.
Preprints 105800 g005
Figure 6. Example of a landmark box adjusting to loss term 2.
Figure 6. Example of a landmark box adjusting to loss term 2.
Preprints 105800 g006
Figure 7. Changes in the form of landmark location as learning progresses.
Figure 7. Changes in the form of landmark location as learning progresses.
Preprints 105800 g007
Figure 8. Examples of learning outcomes of the proposed deep learning model.
Figure 8. Examples of learning outcomes of the proposed deep learning model.
Preprints 105800 g008
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content.
Copyright: This open access article is published under a Creative Commons CC BY 4.0 license, which permit the free download, distribution, and reuse, provided that the author and preprint are cited in any reuse.
Prerpints.org logo

Preprints.org is a free preprint server supported by MDPI in Basel, Switzerland.

Subscribe

© 2024 MDPI (Basel, Switzerland) unless otherwise stated