Abstract
Pulmonary vascular extraction from chest CT images plays an important role in the diagnosis of lung disease. To improve the accuracy rate of pulmonary vascular segmentation, a new pulmonary vascular extraction approach is proposed in this study. First, the lung tissue is extracted from chest CT images by region-growing and maximum between-class variance methods. Then the holes of the extracted region are filled by morphological operations to obtain complete lung region. Second, the points of the pulmonary vascular of the middle slice of the chest CT images are extracted as the original seed points. Finally, the seed points are spread throughout the lung region based on the fast marching method to extract the pulmonary vascular in the gradient image. Results of pulmonary vascular extraction from chest CT image datasets provided by the introduced approach are presented and discussed. Based on the ground truth pixels and the resulting quality measures, it can be concluded that the average accuracy of this approach is about 90%. Extensive experiments demonstrate that the proposed method has achieved the best performance in pulmonary vascular extraction compared with other two widely used methods.
1. Introduction
At present, computed tomography (CT) has become the most common imaging modality for the diagnosis of lung disease. In analysis of chest CT scans, pulmonary vascular extraction is often required before proceeding to diagnose disease and also is an important step in the treatment planning, and follow-up of lung diseases [1]. In computer-aided diagnosis of lung disease, pulmonary vascular extraction can reduce ambiguities and improve nodule detection performance [2] and is used to aid detection of other pulmonary anatomical structures such as airway tree, pulmonary tissue, lung vein, and artery [3–5]. Due to the complexity of the anatomical structure of the pulmonary vascular and the influence of other anatomical structures having similar intensities (e.g., tumor nodules and dense lesion) [6], there is a still more complicated task of extract pulmonary vascular from large scale chest CT images, especially for the small vascular.
For the large amount of chest CT images, manual extraction is an extremely time-consuming and tedious task for doctors. The computerized semiautomatic and automatic methods may be helpful to reduce the doctor's effort. To address these issues, various methods have been extensively studied in recent years. Xu et al. [7] propose novel stagewise convolutional networks, followed by an orientation-based region-growing method, which learn discriminative features of pulmonary vessels automatically in a stage-by-stage manner by stagewise convolutional networks. Orkisz et al. [8] reported a vascular trees segmentation method by variational region growing. This process is performed within a lung mask, where the airways and bronchial walls were previously eliminated by adaptive multiscale morphological operations. Anna [9] introduced a 3D approach for segmentation of pulmonary vascular tree from CT thoracic scans based on author's experience in airway tree segmentation. Lai et al. [10] proposes an automatic integration segmentation approach for the vascular trees in low-dose CT scans. Zhu et al. [11] proposed a vascularity-oriented level set algorithm for pulmonary vessel segmentation in image-guided intervention therapy. Zhao et al. [12] proposed a vessel segmentation method is proposed for lung images based on a random forest classifier and sparse autoencoder features. Chen et al. [13] proposed a method to simultaneously and separately segment the pulmonary nodules and blood vessels. First, a line structure enhancement (LSE) filter and a blob-like structure enhancement (BSE) filter were used to augment the initial selection of vessel regions and nodule candidates, respectively. Then a front surface propagation (FSP) procedure was employed for precise segmentation of blood vessels and nodules. Buelow et al. [14] presented an automated method for the extraction of the pulmonary vessel tree from multislice CT data by a seed point–based front-propagation algorithm. Rudyanto et al. [15] presented an annotated reference dataset containing 20 CT scans and proposed nine categories to perform a comprehensive evaluation of vessel segmentation algorithms from both academia and industry. This dataset is used in the VESSEL12 challenge held at the International Symposium on Biomedical Imaging (ISBI) 2012. The currently most general and extensive vascular segmentation method can be found in [16], with a highly detailed categorization of the existing work. However, because the pulmonary vessel trees are very complex and have a huge number of branches, the overall number of works on pulmonary vascular extraction is very limited for the computer-assisted diagnosis of pulmonary disease and the major methods for pulmonary extraction are still to be developed [7, 17, 18].
Coming forward to meet these needs, a new approach for the extraction of pulmonary vascular from chest CT images is proposed in this work. The proposed approach is based on author's previous work in airway tree extraction [19]. The main idea of the proposed method is to extract the whole lung region, enhance the extracted lung region, and then extract the pulmonary vascular.
This paper is organized as follows. First, in Section 1 a brief review of existing approaches to segmentation of the pulmonary vascular from chest CT images is introduced. Section 2 provides a detailed description of the proposed extraction approach. The image datasets, experiment software, and results of vascular extraction from chest CT image using the introduced method are presented and discussed in Section 3. Finally, Section 4 concludes the study.
2. Methods
The method of this study mainly includes the following steps: extract lung region, enhance the extracted lung region, and extract the pulmonary vascular. The flowchart of the method in this study is shown in Figure 1. The specific algorithms for each step are described in the following sections.
2.1. Lung Region Extraction Method
The anatomical structure of the lung in chest CT image is complex, as shown in Figure 2, if the pulmonary vascular is directly extracted in original CT images, it is difficult to remove the interference of other anatomical structures, such as bone, heart and muscle. Therefore, to segment accurately the pulmonary vascular, it is necessary to extract the lung region to remove other anatomical structures.
2.1.1. Extract Lung Tissue with Region-Growing and Maximum Between-Class Variance Methods
The chest CT image is divided into two categories of lung tissue and other anatomical structure, in which grayscale values are significantly different in the CT image. Region-growing method can segment effectively and correctly a specific set of grayscale values in an image based on the grayscale difference between pixel of that image. The region-growing method is an iterative image segmentation method with three elementary parts: seed points selection, definition of similarity, and criteria for convergence to terminate the iterative process [20]. The regions are grown from these seeds to adjacent points depending on a region membership criterion (e.g., grayscale intensity). Keep examining whether the adjacent points of seeds should be classified into the seed points until the criterion is not met any more [21].
In the previous work, we have used the region-growing method to extract airway from chest CT images [19]. The extracted airway result showed that this method is simple and effective. Therefore, we also use the region-growing method to extract the lung tissue in CT images in this study. This method requires seed points of lung tissue from a particular slice image, which is the middle slice of the patient's chest CT image in this work.
First, the seed points are extracted by the method of maximum between-class variance, which can divide the original image into two parts by using threshold: foreground and background. In the chest CT image, the background is lung tissue and the foreground is the other anatomical structure. T is set to be the segmentation threshold of the foreground and background, the number of foreground points accounts for ω0 of the image, the average grayscale value is u0, the number of background points accounts for ω1 of the image, the average grayscale value is u1, and the total grayscale value of the image is as follows:
(1) |
The variance of foreground and background images:
(2) |
Take u into formula (2) for calculating the variance of the two classes as follows:
(3) |
The maximum threshold Tmax is obtained by using formula (3). The pixels of the image less than threshold Tmax are extracted as the seed points of lung tissue.
Second, the similarity definition is used to determine whether the unmarked pixels of image are added to the detection region. This definition refers to the difference of image intensity between the adjacent pixels. The similarity condition is formulated [22] as follows:
(4) |
The unmarked voxel (xk, yk) in the 26-adjacent N26 can be added to the lung tissue region, if the difference between the grayscale value of I(xk, yk) and seed voxel I(x, y) is less than the given threshold θ. And this voxel (xk, yk) is added to the seed queue voxel for next iteration. This process is shown in Figure 3.
Since this method relies on the difference between the grayscale value of the voxels in the 26-adjacent pixels, the given threshold θ plays an important role in this process. The extraction lung tissue regions are different with different given threshold. The threshold θ is calculated according to the following formula:
(5) |
where max Ilung tissue(x, y) and min Ilung tissue(x, y) are the maximum and minimum gray value and of the pixels of the extracted seed points by maximum between-class variance method, respectively.
The extracted result of the lung tissue is shown in Figure 4, which shows that there are many holes in the extracted lung region. The reasons are that the grayscale value of the vascular is different from the lung tissue.
2.1.2. Fill Holes of Extracted Lung Region with Morphological Operation
In this work, morphological operation method is used to fill the holes of lung tissue on the initial extraction region.
First, the contours of the lung are extracted in the all 2-D transverse images by 8-adjacent contour tracing method. There may be several contours in an image. The contours and the background are set to 1 and 0, respectively. And the set A is defined to represent the contours and the background pixels of the image. We formulate the filling “holes” function as
(6) |
where X0=p, p is any point in the region, B is the 4-neighbourhood structural elements, ⊕ is the dilation operator, and Ac is the complement set of A. At the end of the iteration, Xk=Xk−1. The union set of A and Xk is the region filling the holes.
The extracted region is expanded iteratively by the structural element. The number of iterations is manually based on experience. Then, the extracted region is corroded by the same structural element and the number of iterations of the expanding operation. The final result of the extracted lung region after filling holes is shown in Figure 5.
2.2. Vascular Enhancement Based on Fractional Differential
The actual chest CT image contains noise, which cause the edge of the pulmonary vascular of the image to be unclear. If the pulmonary vascular are directly extracted from the original CT image, it is easy to cause inaccurate extraction of small pulmonary vascular. Therefore, the fractional order differential operator is proposed for enhancing vascular region in the extracted lung tissue(as shown in Figure 4) region before extracting pulmonary vascular.
The Grümwald–Letnikov (G-L) is used to define the numerical implementation of fractional differential of image [23–25]. The period of the unary signal w(t) is t ∈ [a, t], and the signal period [a, t] is equally divided by a certain time interval (such as h = 1, 2, ...), then n=[(t − v)/h]h=1=[t − v], and thus, the differential expressions with fractional differentials can be obtained:
(7) |
For the CT image, the differential expressions with fractional differentials can be obtained as follows:
(8) |
(9) |
The above differential expression constructs 3 ∗ 3 or 5 ∗ 5 differential operators to process the image to enhance the edge of the pulmonary vascular. Since the differential operator is isotropic, it does not enhance the small pulmonary vascular information with the characteristic direction. Thus, a fractional differential operator template can be constructed according to formulae (8) and (9). The operator has the following effect: it has little effect on the smooth region, where the surrounding gray value changes little; and the operator plays an enhancement role for the pixels whose surrounding gray value changes greatly.
By analysing the characteristics and distribution of pulmonary vascular in the chest CT images, it is known that the pulmonary vascular are cylindrical and their directions are mostly four diagonal directions. Thus, a 3 × 3–differential operator template is constructed to enhance the region of vascular, as shown in Figure 6.
Since the operator is not symmetric, the following method should be used: the coordinates of the “1” of the operator template should coincide with the coordinates of the pixel to be subjected to the fractional differential operation. The templates in these four directions are convolved with the lung tissue region, and then the convolution results in each direction are weighted, and the results in the four directions are summed. The image after pulmonary vascular enhancement can be expressed by formula (10):
(10) |
The lung region is processed using the above 3 ∗ 3 fractional differential enhancement template. The different order can obtain different enhancement results. Therefore, we first study the experimental results of different fractional orders for chest CT image, which is shown in Figure 7. The results show that the pulmonary vascular in the CT image are enhanced as the differential order increases. At the same time, the result of small pulmonary vascular enhancement between 0.1 and 0.2 is the best. Although the pulmonary vascular details are enhanced when the order is greater than 0.2, large pulmonary vascular are also suppressed, and the contrast between the large pulmonary vascular and other lung tissues is lowered. Thus, 0.2 fractional order is used to enhance the lung region of CT image in this work.
2.3. Extract Pulmonary Vascular by FMM
The complete lung region is extracted by the method of Section 2.1 and enhanced by fractional differential method. In this section, the pulmonary vascular is extracted with the fast marching method in the lung tissue region.
The fast marching method originates from the solution of the equation of the distance function. Suppose there is a curve φ moving in one direction. The FMM can be described as a family of schemes for computing the evolution of fronts. Things become interesting when the front evolves over time. In the context of the fast marching method, the speed does not have to be the same everywhere but the speed must always be non-negative. As a given point, the motion of the front is described by the equation known as the Eikonal equation, which can be expressed as [13]:
(11) |
where T(x) is the arrival time of the front at point x and F(x) ≥ 0 is the speed of the front at point x.
This is the general form of the equation of distance function. Godunov [26] gives a solution:
(12) |
In this solution, Dij− and Dij+ are backward difference and forward difference operators, i and j represent the two adjacent points of the curve φ, respectively.
If ∇T is approximated as a first-order finite difference operator, then formula (12) can be written as
(13) |
In that case, Δ1=Δx, Δ2=Δy, T=Tij, V=Vij, T1=min(Ti+1,j, Ti−1,j), T2=min(Ti,j+1, Ti,j−1).
A distance value for image must be found to estimate the length of the gradient ‖∇T‖ is equal to 1/F. The following formula (13) is proposed to solve ‖∇T‖:
(14) |
The Di,j, Di,k, Dj,k represent the gradient value in the three directions of Cartesian coordinate system, respectively. i, j, and k represent the three adjacent points.
Considering the case of adjacent points of three-dimensional CT images (as shown in Figure 8), formula (14) can be written as follows:
(15) |
where VA is the unknown distance value and VB, VC, VD, VE, VF, VG are the distance values at the neighbouring voxels. The distance value is the gray value of the pixels of CT images.
For speeding up in homogeneous regions of the image and slowly in regions with a high value of image gradient. The F of the chest CT volume data, be considered as gradient figure, is computed by the exponentiated gradient algorithm as follows:
(16) |
The solution process of FMM is described as follows:
Step 1 . —
All the points are categorized into three categories: the processing points are the seed points (in the initial step, the number of the seed points is one; during the processing, the seed points may be many points); the boundary points are the points near the processing points; the pending points are all the remaining points.
Step 2 . —
The arrival time T(x) is calculated from the initial seed point to the boundary points and sort them according to the time from small to large.
Step 3 . —
The boundary points, less than a certain arrival time threshold, are marked as the next processing points of as the next processing points. Other boundary points are marked as the background points. The nearby points of the next processing points are marked as the new boundary points.
Step 4 . —
The arrival time T(x) of new boundary points are calculated and sorted. If the next processing points are empty, the processing is finished. Otherwise, it returns to (2).
The above processing can be considered that the curve spread along an equal timeline until it arrives at the front of a wall.
In this work, the full lung region of the chest CT images is extracted by the method of Section 2.1 and enhanced by fractional differential method. Then the points of pulmonary vascular are extracted with the maximum between-class variance method in the full lung region of the middle of slice of the chest CT images. In this case, the foreground is the pulmonary vascular. These extracted points are selected as initial seed points. And the minimum and maximum grayscale values of these pulmonary vascular points are calculated as the limited grayscale value threshold. According to the limited grayscale value threshold and the gradient field figure F, the seed points begin to spread through the lung region of images using the fast march method as the above solution process. The points of pulmonary vascular are extracted completely when the spread processing stops.
3. Results and Discussion
The 3 chest CT images dataset were used in this experiment with resolution of 512 × 512, slice thickness less than 1.5 mm and slice number more than 350, which are from a hospital. In order to protect patient privacy information, the image dataset hides the hospital's and patient's name. The ground truth is manually drawn by the doctor for each database.
This method was implemented in Matlab 2015 on a PC with 4 Intel© Core is-i7-6700U CPUs 2.60 GHz, 8 GB DDR4 RAM and NVIDIA GeForce 940 Mx GPU with 2 GB video memory.
We will quantitatively analyse the results of the method for extraction of pulmonary vascular. By comparing the extraction results of the proposed method with the ground truth image, the accurate rate, the leakage rate and over rate of the proposed method are calculated to quantitatively evaluate the. The ground truth image, be manually drawn by the professional doctors on the original CT image, is provided in VESSEL12 challenge.
The evaluation criteria for pulmonary vascular segmentation are as follows:
(17) |
where T and S is the number of pulmonary vascular pixels in the ground truth image and the extraction result by this method, respectively.
In order to observe the experimental results, the comparison results of the 3 datasets between the method in this paper and the ground truth is shown in Figure 9. Figures 9(a) and 9(c) © are the extraction results of this method, and Figures 9(b), 9(d), and 9(f) are the ground truth results. The blue circles indicate different places between the method and the ground truth. The results show that the method can completely extracted the pulmonary vascular, even the extraction results of small pulmonary vascular are also very good, and cause a little over segmentation in the edge of lung region.
The method is compared with the level set [11] and regional growth algorithm [8], which are widely used to extract pulmonary vascular from medical image. The accurate rate, the leakage rate, and the over rate of each segmentation method are calculated by comparing with the ground truth image.
The experimental results of an image dataset of different segmentation methods are shown in Figure 10. The different places of these results are shown by yellow and blue circles in the result images. The results show that the segmentation results of these four methods are equally good, but this method is a better accurate segmentation of the small pulmonary vascular and less over segmentation than the other methods. The blue circle of Figure 10 shows that this method can extract more the small pulmonary vascular. Meanwhile, the yellow circle of Figure 10 shows that this method is less over segmentation results than the other methods.
Table 1 and Figure 11 are the statistical analysis of the segmentation results of the three methods. The average of accurate rate of this method is 91.62%, which is better than the other two methods. And the average of leakage rate and over rate of this method is 8.38% and 3.43%, respectively. It is less than the other two methods.
Table 1.
Dataset no. | Level method (%) | Region-growing method (%) | This method (%) | ||||||
---|---|---|---|---|---|---|---|---|---|
Accurate rate | Leakage rate | Over rate | Accurate rate | Leakage rate | Over rate | Accurate rate | Leakage rate | Over rate | |
1 | 90.42 | 9.58 | 4.43 | 89.53 | 10.47 | 4.11 | 91.87 | 8.13 | 3.15 |
2 | 88.51 | 11.49 | 3.78 | 88.17 | 11.83 | 4.06 | 90.53 | 9.47 | 3.42 |
3 | 90.36 | 9.64 | 3.61 | 89.24 | 10.76 | 3.56 | 92.45 | 7.55 | 3.71 |
Average | 89.76 | 10.24 | 3.94 | 88.98 | 11.02 | 3.91 | 91.62 | 8.38 | 3.43 |
In general, the running time of segmentation method is related to the slice thickness and the slice number. The average running time of this method is about 2 minutes, which can meet the requirements of clinical real-time operation. Furthermore, this method is completely automatic segmentation process without manual operation.
4. Conclusions
This study proposes a method for segmenting pulmonary vascular from chest CT images. The lung tissue region is extracted from chest CT images by region-growing method and maximum between-class variance. Then, the holes of the extracted region are filled by morphological operation. The points of the pulmonary vascular of the middle slice of the CT images are extracted as the original seed points. Finally, the seed points are spread throughout the lung tissue based on the fast-marching method to extracted the pulmonary vascular with the gradient image. The experimental results show that this method can completely extracted the big and small pulmonary vascular and the accuracy is better than the level set method and region-growing method, and the leakage rate and over rate of this method is less than the two other methods. Furthermore, the running time of this method is about 2 minutes to meet the requirements of clinical real-time operation. This method may be used to promote the diagnosis technology of lung diseases for clinical application.
Acknowledgments
This work was supported by the National Key Research and Development Program of China (2018YFC1314501) and the Fundamental Research Funds for the Central Universities under grant nos. N150408001 and N161604006.
Data Availability
The data used to support the findings of this study are available from the corresponding author upon request.
Conflicts of Interest
The authors declare that they have no conflicts of interest.
References
- 1.Kaftan J. N., Aach T. Pulmonary vessel segmentation for multislice CT data: methods and applications. In: El-Baz A., Suri J. S., editors. Lung Imaging and Computer Aided Diagnosis. Boca Raton, FL, USA: CRC Press; 2011. pp. 189–219. [Google Scholar]
- 2.Agam G., Armato S. G., Changhua Wu C. Vessel tree reconstruction in thoracic CT scans with application to nodule detection. IEEE Transactions on Medical Imaging. 2005;24(4):486–499. doi: 10.1109/tmi.2005.844167. [DOI] [PubMed] [Google Scholar]
- 3.Lo P., van Ginneken B., Reinhardt J. M., et al. Extraction of airways from CT (EXACT’09) IEEE Transactions on Medical Imaging. 2012;31(11):2093–2107. doi: 10.1109/tmi.2012.2209674. [DOI] [PubMed] [Google Scholar]
- 4.Lo P., Sporring J., Ashraf H., Pedersen J. J. H., de Bruijne M. Vessel-guided airway tree segmentation: a voxel classification approach. Medical image analysis. 2010;14(4):527–538. doi: 10.1016/j.media.2010.03.004. [DOI] [PubMed] [Google Scholar]
- 5.Nardelli P., Jimenez-Carretero D., Bermejo-Pelaez D., et al. Pulmonary artery-vein classification in CT images using deep learning. IEEE Transactions on Medical Imaging. 2018;37(11):2428–2440. doi: 10.1109/tmi.2018.2833385. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 6.Korfiatis P. D., Kalogeropoulou C., Karahaliou A. N., Kazantzi A. D., Costaridou L. I. Vessel tree segmentation in presence of interstitial lung disease in MDCT. IEEE Transactions on Information Technology in Biomedicine. 2011;15(2):214–220. doi: 10.1109/titb.2011.2112668. [DOI] [PubMed] [Google Scholar]
- 7.Xu Y., Mao Z., Liu C., et al. Pulmonary vessel segmentation via stage-wise convolutional networks with orientation-based region growing optimization. IEEE Access. 2018;6:71296–71305. doi: 10.1109/access.2018.2867859. [DOI] [Google Scholar]
- 8.Orkisz M., Hernández Hoyos M., Pérez Romanello V., et al. Segmentation of the pulmonary vascular trees in 3D CT images using variational region-growing. IRBM. 2014;35(1):11–19. doi: 10.1016/j.irbm.2013.12.001. [DOI] [Google Scholar]
- 9.Anna F. Segmentation of pulmonary vascular tree from 3D CT thorax scans. Biocybernetics and Biomedical Engineering. 2015;35(2):106–119. doi: 10.1016/j.bbe.2014.07.001. [DOI] [Google Scholar]
- 10.Lai J., Huang Y., Wang Y., et al. Three-dimensions segmentation of pulmonary vascular trees for low dose CT scans. Sensing and Imaging. 2016;17(1) doi: 10.1007/s11220-016-0138-3. [DOI] [Google Scholar]
- 11.Zhu X., Xue Z., Gao X., et al. Voles: vascularity-oriented level set algorithm for pulmonary vessel segmentation in image guided intervention therapy. Proceedings of IEEE International Symposium on Biomedical Imaging: from Nano to Macro, ISBI’09; June 2009; Boston, MA, USA. IEEE; pp. 1247–1250. [DOI] [Google Scholar]
- 12.Zhao B., Cao Z., Wang S. Lung vessel segmentation based on random forests. Electronics Letters. 2017;53(4):220–222. doi: 10.1049/el.2016.4438. [DOI] [Google Scholar]
- 13.Chen B., Kitasaka T., Honma H., et al. Automatic segmentation of pulmonary blood vessels and nodules based on local intensity structure analysis and surface propagation in 3D chest CT images. International Journal of Computer Assisted Radiology and Surgery. 2011;7(3):465–482. doi: 10.1007/s11548-011-0638-5. [DOI] [PubMed] [Google Scholar]
- 14.Bülow T., Wiemker R., Blaffert T., et al. Automatic extraction of the pulmonary artery tree from multi-slice CT data. Proceedings of conference on Medical Imaging 2005: Physiology, Function, and Structure from Medical Images; April 2005; San Diego, CA, USA. International Society for Optics and Photonics; pp. 730–741. [DOI] [Google Scholar]
- 15.Rudyanto R. D., Kerkstra S., van Rikxoort E. M., et al. Comparing algorithms for automated vessel segmentation in computed tomography scans of the lung: the VESSEL12 study. Medical Image Analysis. 2014;18(7):1217–1232. doi: 10.1016/j.media.2014.07.003. [DOI] [PMC free article] [PubMed] [Google Scholar]
- 16.Lesage D., Angelini E. D., Bloch I., Funka-Lea G. A review of 3D vessel lumen segmentation techniques: models, features and extraction schemes. Medical Image Analysis. 2009;13(6):819–845. doi: 10.1016/j.media.2009.07.011. [DOI] [PubMed] [Google Scholar]
- 17.Paulinas M., Miniotas D., Meilūnas M., et al. An algorithm for segmentation of blood vessels in images. Elektronika ir Elektrotechnika. 2015;83(3):25–28. [Google Scholar]
- 18.Li X., Wang X., Dai Y., Zhang P. Supervised recursive segmentation of volumetric CT images for 3D reconstruction of lung and vessel tree. Computer Methods and Programs in Biomedicine. 2015;122(3):316–329. doi: 10.1016/j.cmpb.2015.08.014. [DOI] [PubMed] [Google Scholar]
- 19.Tan W., Yang J., Bian Z., Gong Z., Zhao D. Automatic extraction of 3D airway tree from multislice computed tomography images. Journal of Medical Imaging and Health Informatics. 2014;4(5):768–775. doi: 10.1166/jmihi.2014.1318. [DOI] [Google Scholar]
- 20.Adams R., Bischof L. Seeded region growing. IEEE Transactions on Pattern Analysis and Machine Intelligence. 1994;16(6):641–647. doi: 10.1109/34.295913. [DOI] [Google Scholar]
- 21.Li Q. Glioma segmentation with a unified algorithm in multimodal MRI images. IEEE Access. 2018;6:9543–9553. [Google Scholar]
- 22.Lin K. C. Fast image thresholding by finding the zero(s) of the first derivative of between-class variance. Machine Vision and Applications. 2003;13(5-6):254–262. doi: 10.1007/s00138-002-0082-1. [DOI] [Google Scholar]
- 23.Cafagna D. Fractional calculus: a mathematical tool from the past for present engineers (Past and present) IEEE Industrial Electronics Magazine. 2007;1(2):35–40. doi: 10.1109/mie.2007.901479. [DOI] [Google Scholar]
- 24.Miller K. S., Ross B. An Introduction to the Fractional Calculus and Fractional Differential Equations. New York, NY, USA: Wiley; 1993. [Google Scholar]
- 25.Xiao C., Staring M., Shamonin D., Reiber J. H. C., Stolk J., Stoel B. C. A strain energy filter for 3D vessel enhancement with application to pulmonary CT images. Medical Image Analysis. 2011;15(1):112–124. doi: 10.1016/j.media.2010.08.003. [DOI] [PubMed] [Google Scholar]
- 26.Godunov S. K. A difference method for numerical calculation of discontinuous solutions of the equations of hydrodynamics. Matematicheskii Sbornik. 1959;89(3):271–306. [Google Scholar]
Associated Data
This section collects any data citations, data availability statements, or supplementary materials included in this article.
Data Availability Statement
The data used to support the findings of this study are available from the corresponding author upon request.