Abstract
We present a novel fully automated algorithm for the detection of retinal diseases via optical coherence tomography (OCT) imaging. Our algorithm utilizes multiscale histograms of oriented gradient descriptors as feature vectors of a support vector machine based classifier. The spectral domain OCT data sets used for cross-validation consisted of volumetric scans acquired from 45 subjects: 15 normal subjects, 15 patients with dry age-related macular degeneration (AMD), and 15 patients with diabetic macular edema (DME). Our classifier correctly identified 100% of cases with AMD, 100% cases with DME, and 86.67% cases of normal subjects. This algorithm is a potentially impactful tool for the remote diagnosis of ophthalmic diseases.
OCIS codes: (100.0100) Image processing, (170.4470) Ophthalmology, (100.2960) Image analysis, (100.5010) Pattern recognition, (110.4500) Optical coherence tomography
1. Introduction
Optical Coherence Tomography (OCT) is widely used in ophthalmology for viewing the morphology of the retina, which is important for disease detection and assessing the response to treatment. Currently, the diagnosis of retinal diseases such as age-related macular degeneration (AMD) and diabetic retinopathy (the leading causes of blindness in elderly [1] and working-age Americans [2], respectively) is based primarily on clinical examination and the subjective analysis of OCT images by trained ophthalmologists. To speed up the diagnostic process and enable remote identification of diseases, automated analysis of OCT images has remained an active field of research since the early days of OCT imaging [3].
Over the past two decades, the application of image processing and computer vision to OCT image interpretation has mostly focused on the development of automated retinal layer segmentation methods [4–18]. Segmented layer thicknesses are compared to the corresponding thickness measurements from normative databases to help identify retinal diseases [19–22]. Aside from measuring retinal layer thicknesses, a few papers have focused on segmenting the fluid regions seen in retinal OCT images such as edema or cystic structures, which are often observed in advanced stages of diseases such as diabetic macular edema (DME) and wet (exudative) age-related macular degeneration [23, 24]. Despite recent advances in the development of multi-platform automated layer segmentation software, for the case of “real-world” clinical OCT images (as opposed to experimental images attained through long imaging sessions) of severely diseased eyes with significant pathology, applications are currently limited to a few boundaries [25] or to the detection of retinal diseases in early stages before the appearance of severe pathology [26].
A relatively small number of algorithms have been developed for the automatic detection of ocular diseases with less emphasis on the direct comparison of retinal layer thicknesses. One method used texture and morphological features from OCT images of the choroid to differentiate between three image classes using decision trees. The accuracy of this algorithm for the detection of (1) neovascular AMD or exudations secondary to diabetic or thrombotic edema; (2) diffuse macular edema without blood and exudations or ischemia of the inner retinal layers; and (3) scaring fibrovascular tissue was 0.73, 0.83, and 0.69, respectively [27]. Another very recent work performed binary classification to differentiate between normal eyes and eyes with advanced AMD using kernel principal component analysis model ensembles, with a recognition rate of 92% for each class [28]. Using a similar data set from advanced AMD and normal subjects, a method based on a Bayesian network classifier achieved an area under curve classification performance of 0.94 [29]. Finally, a recent method measured inner retinal layer thicknesses and speckle patterns and utilized a support vector machine (SVM) classifier to differentiate between normal eyes and eyes with glaucoma [30]. Additionally, we recently introduced an SVM-based classification method for differentiating wild-type from rhodopsin knockout mice utilizing their volumetric OCT scans with 100% accuracy [31].
A very exciting work in this field, which is the closest to what we propose in this paper, is a method by Liu and colleagues. In their work, the authors used multiscale Local Binary Pattern (LBP) features to perform multiclass classification of retinal OCT images for the detection of macular pathologies [32]. While this method shows excellent results, it was limited, in that it requires manual input to select a single fovea-centered good-quality OCT image (signal strength of 8 or above in a Cirrus system) per volume, and detects diseases within the entire eye using only that image.
Here, we present an alternative fully automated method that detects retinal diseases within eyes. This method uses Histogram of Oriented Gradients (HOG) descriptors [33] and SVMs [34] to classify each image within a spectral domain (SD)-OCT volume as normal, containing dry AMD, or containing DME. Our algorithm analyzes every image in each SD-OCT volume to detect retinal diseases and requires no human input. Section 2 introduces our classification method, Section 3 demonstrates the accuracy and generalizability of our classifier through leave-three-out cross-validation, and Section 4 outlines conclusions and future directions.
2. Methods
This section introduces our method for detecting retinal diseases by classifying SD-OCT images. The core steps are outlined in Fig. 1 and described in detail in the following subsections.
2.1 Image denoising
SD-OCT images are corrupted by speckle noise, so it is beneficial to denoise them to reduce the effect of noise on the classification results. B-scan averaging or other special scanning patterns [35, 36] reduces noise but decreases the image acquisition speed. Thus, to improve the quality of our captured images, we denoise individual B-scans in the SD-OCT volume using the sparsity-based block matching and 3D-filtering (BM3D) denoising method that is freely available online [37]. Each B-scan is resized to 248 rows by 256 columns for consistent and non-excessive feature vector dimensionality using the MATLAB command imresize and then denoised with BM3D.
2.2 Retinal curvature flattening
SD-OCT images of the retina have a natural curvature (which is further distorted due to the common practices in OCT image acquisition and display [38]) that varies both between patients and within each SD-OCT volume. Following [5], to reduce the effects of the perceived retinal curvature when classifying SD-OCT images, we flatten the retinal curvature in each image.
To flatten the retinal curvature in each SD-OCT image, we first calculate a pilot estimate of the retinal pigment epithelium (RPE) layer. From our prior knowledge that the RPE is one of the most hyper-reflective layers within a retinal SD-OCT image, we assign the outermost of the two highest local maxima in each column of the denoised image as the estimated RPE location. Next, we calculate the convex hull around the pilot RPE points, and use the lower border of the convex hull as an estimate of the lower boundary of the retina. We remove outliers by applying a [1 × 3] median filter (MATLAB notation) to this estimate. To create the roughly flattened image, we fit a second-order polynomial to the estimated retinal lower boundary points and shift each column up or down so that these points lie on a horizontal line. Figure 2 demonstrates this flattening, where Fig. 2(b) is the version of Fig. 2(a) with the retinal curvature flattened.
2.3 Image cropping
To focus on the region of the retina that contains morphological structures with sufficient variation between disease classes, we crop each SD-OCT image before extracting the feature vector. In the lateral direction, each image is cropped to the center 150 columns. In the axial direction, each image is cropped to 45 pixels, 40 above and 5 below the mean lower boundary of the retina.
2.4 Feature vector extraction
To effectively describe the shape and appearance of morphological structures within each image, we use HOG descriptors. The HOG descriptor algorithm divides the image into connected regions, called cells, and the shape of local objects is described by counting the strength and orientation of the spatial gradients in each cell. In summary, the image is divided into small spatial cells, and a 1-D histogram of the directions of the spatial gradients, weighted by the gradient magnitudes, is calculated for each cell. To encourage the descriptors to be invariant to factors such as illumination and shadowing, these gradient values are contrast-normalized over larger overlapping spatial blocks. The descriptor vector v for each block is normalized using the L2-Hys method from [33], v→v/(||v||22 + ε 2)1/2 where ε is a small constant, followed by limiting the maximum value of v to 0.2 and then renormalizing. The feature vector for each image consists of the collected normalized histograms from all the blocks. Figure 3 displays a visualization of the HOG descriptors, with Fig. 3(a) as the original SD-OCT image, Fig. 3(b) as the denoised, flattened, and cropped image, and Fig. 3(c) as a visualization of the HOG descriptors for each block.
In our implementation, we use the MATLAB command extractHOGFeatures with a [4 × 4] cell size, [2 × 2] cells per block, a block overlap of [1 × 1] cells, unsigned gradients, and 9 orientation histogram bins. Furthermore, to consider structures at multiple scale levels, we extract HOG feature vectors at four levels of the multiscale Gaussian lowpass image pyramid and concatenate them into a single feature vector for each image. The image pyramid is calculated using the MATLAB command impyramid, which uses the separable kernel W(m,n) = w(m)w(n) with w = [(1/4)-(a/2),1/4,a,1/4,(1/4)-(a/2)] from [39] with a = 0.375.
2.5 Image classification
For multiclass classification of each SD-OCT image, we train separate SVMs in a one-versus-one fashion. In our experiments, we have three classes: Normal, AMD, and DME. We train a multiclass classifier, composed of three linear SVMs, to classify Normal vs. AMD, Normal vs. DME, and AMD vs. DME. Our classifier is implemented in MATLAB using the functions svmtrain and svmclassify.
To classify an image, the extracted feature vector is classified using all three SVMs, and the class that receives the most votes is chosen as the classification for the image. An entire SD-OCT volume is classified as the mode of the individual image classification results.
2.6 SD-OCT data sets
The SD-OCT data sets used for cross-validation consisted of volumetric scans acquired from 45 patients: 15 normal patients, 15 patients with dry AMD, and 15 patients with DME. All SD-OCT volumes were acquired in Institutional Review Board-approved protocols using Spectralis SD-OCT (Heidelberg Engineering Inc., Heidelberg, Germany) imaging at Duke University, Harvard University, and the University of Michigan. Table 1 shows the scanning protocol for these subjects. Figure 4 displays example images from SD-OCT volumes of each of our three classes, demonstrating varying degrees of pathology and the intraclass variability displayed in our data sets.
Table 1. SD-OCT scanning protocol for the study subjects.
Type | Axial Resolution (µm) | Lateral Resolution (µm) | Azimuthal Resolution (µm) | Scan Dimensions (mm × mm) | A-scans | B-scans |
---|---|---|---|---|---|---|
Normal | 3.87 | 12 | 63 | 6.1 × 6.1 | 512 | 97 |
Normal | 3.87 | 12 | 62 | 5.9 × 6.0 | 512 | 97 |
Normal | 3.87 | 12 | 63 | 6.1 × 6.1 | 512 | 97 |
Normal | 3.87 | 12 | 63 | 6.1 × 6.1 | 512 | 97 |
Normal | 3.87 | 11 | 59 | 5.6 × 5.7 | 512 | 97 |
Normal | 3.87 | 11 | 60 | 5.8 × 5.8 | 512 | 97 |
Normal | 3.87 | 11 | 58 | 5.6 × 5.6 | 512 | 97 |
Normal | 3.87 | 12 | 61 | 5.9 × 5.9 | 512 | 97 |
Normal | 3.87 | 11 | 61 | 5.8 × 5.9 | 512 | 97 |
Normal | 3.87 | 12 | 62 | 6.0 × 6.0 | 512 | 97 |
Normal | 3.87 | 12 | 129 | 6.2 × 6.3 | 512 | 49 |
Normal | 3.87 | 12 | 64 | 6.1 × 6.2 | 512 | 97 |
Normal | 3.87 | 11 | 60 | 5.8 × 5.8 | 512 | 97 |
Normal | 3.87 | 12 | 64 | 6.1 × 6.2 | 512 | 97 |
Normal | 3.87 | 12 | 62 | 5.9 × 6.0 | 512 | 97 |
AMD | 3.87 | 11 | 120 | 5.8 × 5.9 | 512 | 49 |
AMD | 3.87 | 11 | 120 | 5.8 × 5.9 | 512 | 49 |
AMD | 3.87 | 6 | 124 | 6.0 × 4.6 | 1024 | 37 |
AMD | 3.87 | 11 | 122 | 5.8 × 4.5 | 512 | 37 |
AMD | 3.87 | 12 | 122 | 5.9 × 4.5 | 512 | 37 |
AMD | 3.87 | 11 | 122 | 5.8 × 4.5 | 512 | 37 |
AMD | 3.87 | 6 | 62 | 5.9 × 4.5 | 1024 | 73 |
AMD | 3.87 | 11 | 119 | 5.7 × 4.4 | 512 | 37 |
AMD | 3.87 | 6 | 60 | 5.8 × 4.4 | 1024 | 73 |
AMD | 3.87 | 6 | 62 | 5.9 × 4.5 | 1024 | 73 |
AMD | 3.87 | 11 | 122 | 5.8 × 4.5 | 512 | 37 |
AMD | 3.87 | 11 | 122 | 5.8 × 4.5 | 512 | 37 |
AMD | 3.87 | 11 | 122 | 5.8 × 4.5 | 512 | 37 |
AMD | 3.87 | 6 | 59 | 5.7 × 4.3 | 1024 | 73 |
AMD | 3.87 | 11 | 122 | 5.8 × 4.5 | 1024 | 37 |
DME | 3.87 | 11 | 120 | 8.7 × 7.3 | 768 | 61 |
DME | 3.87 | 12 | 120 | 8.8 × 7.3 | 768 | 61 |
DME | 3.87 | 12 | 120 | 8.7 × 7.3 | 768 | 61 |
DME | 3.87 | 12 | 232 | 8.7 × 7.2 | 768 | 31 |
DME | 3.87 | 12 | 121 | 8.9 × 7.4 | 768 | 61 |
DME | 3.87 | 12 | 126 | 9.1 × 7.6 | 768 | 61 |
DME | 3.87 | 12 | 120 | 8.7 × 7.3 | 768 | 61 |
DME | 3.87 | 11 | 118 | 8.6 × 7.2 | 768 | 61 |
DME | 3.87 | 12 | 118 | 8.7 × 7.2 | 768 | 61 |
DME | 3.87 | 11 | 60 | 5.8 × 5.8 | 512 | 97 |
DME | 3.87 | 12 | 66 | 6.3 × 6.4 | 512 | 97 |
DME | 3.87 | 11 | 61 | 5.8 × 5.9 | 512 | 97 |
DME | 3.87 | 12 | 62 | 6.0 × 6.0 | 512 | 97 |
DME | 3.87 | 12 | 62 | 5.9 × 6.0 | 512 | 97 |
DME | 3.87 | 11 | 61 | 5.8 × 5.9 | 512 | 97 |
During the cross-validation, 65 images from 2 AMD patients and 3 DME patients that were unrepresentative of their classes were excluded when training the classifier. This does not limit the fully-automated property of the proposed method, because all images were used for testing. To facilitate comparison and future studies by other groups, we have made all the images used in the study available at: http://www.duke.edu/~sf59/Srinivasan_BOE_2014_dataset.htm .
3. Results
To assess the performance of our classification algorithm and its ability to generalize to an independent data set, we used leave-three-out cross-validation to efficiently utilize all data sets and to avoid bias in our results by excluding any data. Using our data set of 45 SD-OCT volumes, we performed 45 experiments. In each experiment, the multiclass classifier was trained on 42 volumes, excluding one volume from each class, and tested on the three volumes that were excluded from training. This process results in each of the 45 SD-OCT volumes being classified once, each using 42 of the other volumes as training data. The cross-validation results can be seen in Table 2.
Table 2. Fraction of volumes correctly classified during cross-validation.
Class | Fraction of Volumes Correctly Classified |
---|---|
Normal | 13/15 = 86.67% |
AMD | 15/15 = 100% |
DME | 15/15 = 100% |
The fully automated algorithm was coded in MATLAB (The MathWorks, Natick, MA) and tested on a 4-core desktop computer with a Windows-7 64-bit operating system, Core i7-4770 CPU at 3.4 GHz (Intel, Santa Clara, CA), and 12 GB of RAM. When utilizing the proposed [45 × 150] pixels cropped region, the average computation time was 0.25 seconds per image (averaged over 1000 trials per image). The SVM training process took 57.23 seconds per set of three one-versus-one classifiers. Note that the SVM training is a one-time process and in practice does not add to the overall computation time for the image classification. When using smaller [30 × 100] or larger [60 × 200] fields-of-view, the classification time was 0.19 seconds and 0.29 seconds, respectively. The training time for the former and latter cases was 54.15 and 65.78 seconds, respectively.
4. Conclusion
This paper presented a novel method for the detection of retinal diseases using OCT. This method was successfully tested for the detection of DME and dry AMD. The proposed method does not rely on the segmentation of inner retinal layers, but rather utilizes an easy to implement classification method based on HOG descriptors and SVM classifiers. This is a potentially important feature when dealing with diseases that significantly alter inner retinal layers and, thus, complicate the layer boundary segmentation task. Moreover, our algorithm achieved perfect sensitivity and high specificity in the detection of retinal diseases despite utilizing images captured with different scanning protocols, which is often the case in real-world clinical practice.
Our algorithm is relatively robust with respect to the analysis field-of-view defined by the cropped area in Section 2.1. While our results report the more conservative and large [45 × 150] region, we could achieve similar performance for a 50% smaller in each direction field-of-view of [30 × 100] region on each B-scan. Using a smaller field-of-view is beneficial as it reduces the memory requirements compared to the larger field-of-view case. However, there is a possibility that in some cases, a smaller field-of-view analysis window would miss the pathology appearing in the more peripheral regions. Similarly to the above cases, when we increased the analysis field-of-view to a very large [60 × 200] region, we misclassified only two subjects. However, the misclassified cases were one DME subject and one Normal subject. We should note that the memory requirements of the very large field-of-view case were significantly higher than the previous cases, and it could not be executed on PC computers with less than 12GB of RAM memory. An uncropped ([248 × 256]) field-of-view case could not be run on our test computer due to heavy memory requirements.
Noting that we used the exact same algorithmic parameters for all subjects in our study, one of the exciting characteristics of our algorithm is its robustness with respect to the imaging parameters, including resolution. As explained in Section 2.1, we resize all input images to a fixed image size. Thus, although our input data was captured with different scanning protocols, resulting in different pixel pitch and resolutions as illustrated in Table 1, we used the exact same algorithmic parameters, including crop size, for all images in our data set. Indeed, it is foreseeable that in a certain study, images could be captured by a significantly different imaging protocol as compared to the common clinical protocols used in this paper. In such cases, the cropping parameters might need to be adjusted to provide a similar pixel pitch as in this study; however, the investigation of such cases is out of the scope of this paper.
In Section 2.2, we used a second order polynomial approximation of the retina curvature. Such an approximation is computationally attractive due to its simplicity and relative robustness to image and vessel shadow artifacts, as compared to more complex models. However, while this model has experimentally proven to be adequate for our classification method, it is indeed a very rough approximation of the true anatomy of the eye. Indeed, many retinal layer segmentation algorithms, especially those using graph cuts based on Dijkstra’s shortest path, should utilize more complex models and techniques to better approximate the retinal curvature to achieve the desired flattening accuracy [12].
Additionally, in Section 2.2, to attain a roughly flattened retina, we shifted the columns by integer values. In some cases, such integer shifts can produce slight retinal layer discontinuities in the flattened image, as seen in Fig. 3(c). If desired, more visually appealing flattened images can be attained by using interpolation to achieve subpixel column shifts. Since the interpolation will slightly increase the computational cost, it might be best reserved for use in cases where the axial resolution of the OCT system is critically low, as in the case of time-domain OCT systems, where interpolation might improve the classification accuracy.
The analysis of a single B-scan is often not sufficient for the diagnosis of retinal diseases. For example, one criterion for the characterization of intermediate dry-AMD, as defined in the Age-Related Eye Disease Study (AREDS), is finding 50 distinct medium-sized drusen [40]. These drusen can appear on several B-scans, requiring multi-frame analysis. Thus, we advocate utilizing several B-scans for the detection of retinal diseases. In our study, we experimentally found out that if 33% or more of the images in the volume are classified as AMD/DME, we achieved the best diseases detection rate. It is reasonable to assume that such detection rate should be lowered for studies of the very early stages of AMD and DME or other diseases such as macular hole, which have a more localized pathologic manifestation.
This fully automated technique is a potentially valuable tool for remote diagnosis applications. Thus, part of our ongoing work is to extend the application of this algorithm to other retinal diseases such as macular hole, macular telangiectasia, macular toxicity, and central serous chorioretinopathy. However, we emphasize that the independent application of this algorithm is not the most appropriate method for the detection of all diseases with retinal manifestations. For example, the detection of the earliest stages of diabetic retinopathy [26] or glaucoma [16] is expected to be significantly more accurate when using layer segmentation methods. We expect that the most efficient fully automated remote diagnostic system for ophthalmic diseases would incorporate both of these approaches. The development of such a comprehensive method is part of our ongoing work.
Acknowledgments
This research was supported by the NIH R01 EY022691 (SF), the U.S. Army Medical Research Acquisition Activity Contract W81XWH-12-1-0397 (JAI), the Duke University Pratt Undergraduate Fellowship Program (PPS), the Juvenile Diabetes Research Foundation (GMC), the NEI K12-EY16335 (LAK), the NEI K12 EY016333-08 (PSM), and the Massachusetts Lions Eye Research Fund (LAK). We would like to thank Professors Magali Saint-Geniez and Kevin McHugh of Harvard University for their collaboration and invaluable feedback.
References and links
- 1.Bowes Rickman C., Farsiu S., Toth C. A., Klingeborn M., “Dry Age-Related Macular Degeneration: Mechanisms, Therapeutic Targets, and Imaging,” Invest. Ophthalmol. Vis. Sci. 54(14), ORSF68 (2013). 10.1167/iovs.13-12757 [DOI] [PMC free article] [PubMed] [Google Scholar]
- 2.Yellowlees Douglas J., Bhatwadekar A. D., Li Calzi S., Shaw L. C., Carnegie D., Caballero S., Li Q., Stitt A. W., Raizada M. K., Grant M. B., “Bone marrow-CNS connections: Implications in the pathogenesis of diabetic retinopathy,” Prog. Retin. Eye Res. 31(5), 481–494 (2012). 10.1016/j.preteyeres.2012.04.005 [DOI] [PMC free article] [PubMed] [Google Scholar]
- 3.Hee M. R., Izatt J. A., Swanson E. A., Huang D., Schuman J. S., Lin C. P., Puliafito C. A., Fujimoto J. G., “Optical coherence tomography of the human retina,” Arch. Ophthalmol. 113(3), 325–332 (1995). 10.1001/archopht.1995.01100030081025 [DOI] [PubMed] [Google Scholar]
- 4.Antony B. J., Abràmoff M. D., Harper M. M., Jeong W., Sohn E. H., Kwon Y. H., Kardon R., Garvin M. K., “A combined machine-learning and graph-based framework for the segmentation of retinal surfaces in SD-OCT volumes,” Biomed. Opt. Express 4(12), 2712–2728 (2013). 10.1364/BOE.4.002712 [DOI] [PMC free article] [PubMed] [Google Scholar]
- 5.Chiu S. J., Li X. T., Nicholas P., Toth C. A., Izatt J. A., Farsiu S., “Automatic segmentation of seven retinal layers in SDOCT images congruent with expert manual segmentation,” Opt. Express 18(18), 19413–19428 (2010). 10.1364/OE.18.019413 [DOI] [PMC free article] [PubMed] [Google Scholar]
- 6.DeBuc D. C., Somfai G. M., Ranganathan S., Tátrai E., Ferencz M., Puliafito C. A., “Reliability and reproducibility of macular segmentation using a custom-built optical coherence tomography retinal image analysis software,” J. Biomed. Opt. 14(6), 064023 (2009). 10.1117/1.3268773 [DOI] [PMC free article] [PubMed] [Google Scholar]
- 7.Ishikawa H., Stein D. M., Wollstein G., Beaton S., Fujimoto J. G., Schuman J. S., “Macular Segmentation with Optical Coherence Tomography,” Invest. Ophthalmol. Vis. Sci. 46(6), 2012–2017 (2005). 10.1167/iovs.04-0335 [DOI] [PMC free article] [PubMed] [Google Scholar]
- 8.Vermeer K. A., van der Schoot J., Lemij H. G., de Boer J. F., “Automated segmentation by pixel classification of retinal layers in ophthalmic OCT images,” Biomed. Opt. Express 2(6), 1743–1756 (2011). 10.1364/BOE.2.001743 [DOI] [PMC free article] [PubMed] [Google Scholar]
- 9.Shahidi M., Wang Z., Zelkha R., “Quantitative Thickness Measurement of Retinal Layers Imaged by Optical Coherence Tomography,” Am. J. Ophthalmol. 139(6), 1056–1061 (2005). 10.1016/j.ajo.2005.01.012 [DOI] [PubMed] [Google Scholar]
- 10.Yang Q., Reisman C. A., Chan K., Ramachandran R., Raza A., Hood D. C., “Automated segmentation of outer retinal layers in macular OCT images of patients with retinitis pigmentosa,” Biomed. Opt. Express 2(9), 2493–2503 (2011). 10.1364/BOE.2.002493 [DOI] [PMC free article] [PubMed] [Google Scholar]
- 11.Cabrera Fernández D., Salinas H. M., Puliafito C. A., “Automated detection of retinal layer structures on optical coherence tomography images,” Opt. Express 13(25), 10200–10216 (2005). 10.1364/OPEX.13.010200 [DOI] [PubMed] [Google Scholar]
- 12.Chiu S. J., Izatt J. A., O’Connell R. V., Winter K. P., Toth C. A., Farsiu S., “Validated Automatic Segmentation of AMD Pathology Including Drusen and Geographic Atrophy in SD-OCT Images,” Invest. Ophthalmol. Vis. Sci. 53(1), 53–61 (2012). 10.1167/iovs.11-7640 [DOI] [PubMed] [Google Scholar]
- 13.Lang A., Carass A., Hauser M., Sotirchos E. S., Calabresi P. A., Ying H. S., Prince J. L., “Retinal layer segmentation of macular OCT images using boundary classification,” Biomed. Opt. Express 4(7), 1133–1152 (2013). 10.1364/BOE.4.001133 [DOI] [PMC free article] [PubMed] [Google Scholar]
- 14.Mishra A., Wong A., Bizheva K., Clausi D. A., “Intra-retinal layer segmentation in optical coherence tomography images,” Opt. Express 17(26), 23719–23728 (2009). 10.1364/OE.17.023719 [DOI] [PubMed] [Google Scholar]
- 15.Paunescu L. A., Schuman J. S., Price L. L., Stark P. C., Beaton S., Ishikawa H., Wollstein G., Fujimoto J. G., “Reproducibility of Nerve Fiber Thickness, Macular Thickness, and Optic Nerve Head Measurements Using StratusOCT,” Invest. Ophthalmol. Vis. Sci. 45(6), 1716–1724 (2004). 10.1167/iovs.03-0514 [DOI] [PMC free article] [PubMed] [Google Scholar]
- 16.Mayer M. A., Hornegger J., Mardin C. Y., Tornow R. P., “Retinal Nerve Fiber Layer Segmentation on FD-OCT Scans of Normal Subjects and Glaucoma Patients,” Biomed. Opt. Express 1(5), 1358–1383 (2010). 10.1364/BOE.1.001358 [DOI] [PMC free article] [PubMed] [Google Scholar]
- 17.Mujat M., Chan R., Cense B., Park B., Joo C., Akkin T., Chen T., de Boer J., “Retinal nerve fiber layer thickness map determined from optical coherence tomography images,” Opt. Express 13(23), 9480–9491 (2005). 10.1364/OPEX.13.009480 [DOI] [PubMed] [Google Scholar]
- 18.Carass A., Lang A., Hauser M., Calabresi P. A., Ying H. S., Prince J. L., “Multiple-object geometric deformable model for segmentation of macular OCT,” Biomed. Opt. Express 5(4), 1062–1074 (2014). 10.1364/BOE.5.001062 [DOI] [PMC free article] [PubMed] [Google Scholar]
- 19.Farsiu S., Chiu S. J., O’Connell R. V., Folgar F. A., Yuan E., Izatt J. A., Toth C. A., “Quantitative Classification of Eyes with and without Intermediate Age-related Macular Degeneration Using Optical Coherence Tomography,” Ophthalmology 121(1), 162–172 (2014). [DOI] [PMC free article] [PubMed] [Google Scholar]
- 20.Gregori G., Wang F., Rosenfeld P. J., Yehoshua Z., Gregori N. Z., Lujan B. J., Puliafito C. A., Feuer W. J., “Spectral domain optical coherence tomography imaging of drusen in nonexudative age-related macular degeneration,” Ophthalmology 118(7), 1373–1379 (2011). [DOI] [PMC free article] [PubMed] [Google Scholar]
- 21.Medeiros F. A., Zangwill L. M., Bowd C., Vessani R. M., Susanna R., Jr, Weinreb R. N., “Evaluation of retinal nerve fiber layer, optic nerve head, and macular thickness measurements for glaucoma detection using optical coherence tomography,” Am. J. Ophthalmol. 139(1), 44–55 (2005). 10.1016/j.ajo.2004.08.069 [DOI] [PubMed] [Google Scholar]
- 22.Tan O., Li G., Lu A. T.-H., Varma R., Huang D., “Mapping of Macular Substructures with Optical Coherence Tomography for Glaucoma Diagnosis,” Ophthalmology 115(6), 949–956 (2008). [DOI] [PMC free article] [PubMed] [Google Scholar]
- 23.Fernández D. C., “Delineating Fluid-Filled Region Boundaries in Optical Coherence Tomography Images of the Retina,” IEEE Trans. Med. Imaging 24(8), 929–945 (2005). 10.1109/TMI.2005.848655 [DOI] [PubMed] [Google Scholar]
- 24.Chiu S. J., Toth C. A., Bowes Rickman C., Izatt J. A., Farsiu S., “Automatic segmentation of closed-contour features in ophthalmic images using graph theory and dynamic programming,” Biomed. Opt. Express 3(5), 1127–1140 (2012). 10.1364/BOE.3.001127 [DOI] [PMC free article] [PubMed] [Google Scholar]
- 25.Lee J. Y., Chiu S. J., Srinivasan P., Izatt J. A., Toth C. A., Farsiu S., Jaffe G. J., “Fully Automatic Software for Quantification of Retinal Thickness and Volume in Eyes with Diabetic Macular Edema from Images Acquired by Cirrus and Spectralis Spectral Domain Optical Coherence Tomography Machines,” Invest. Ophthalmol. Vis. Sci. 54, 7595–7602 (2013). 10.1167/iovs.13-11762 [DOI] [PMC free article] [PubMed] [Google Scholar]
- 26.Somfai G. M., Tátrai E., Laurik L., Varga B., Ölvedy V., Jiang H., Wang J., Smiddy W. E., Somogyi A., DeBuc D. C., “Automated classifiers for early detection and diagnosis of retinopathy in diabetic eyes,” BMC Bioinformatics 15(1), 106 (2014). 10.1186/1471-2105-15-106 [DOI] [PMC free article] [PubMed] [Google Scholar]
- 27.Koprowski R., Teper S., Wróbel Z., Wylegala E., “Automatic analysis of selected choroidal diseases in OCT images of the eye fundus,” Biomed. Eng. Online 12(1), 117 (2013). 10.1186/1475-925X-12-117 [DOI] [PMC free article] [PubMed] [Google Scholar]
- 28.Zhang Y., Zhang B., Coenen F., Xiao J., Lu W., “One-class kernel subspace ensemble for medical image classification,” EURASIP J. Adv. Signal Process. 2014, 1–13 (2014). [Google Scholar]
- 29.A. Albarrak, F. Coenen, and Y. Zheng, “Age-related Macular Degeneration Identification In Volumetric Optical Coherence Tomography Using Decomposition and Local Feature Extraction,” in The 17th Annual Conference in Medical Image Understanding and Analysis (MIUA)(2013), pp. 59–64. [Google Scholar]
- 30.N. Anantrasirichai, A. Achim, J. E. Morgan, I. Erchova, and L. Nicholson, “SVM-based texture classification in Optical Coherence Tomography,” in 2013 IEEE 10th International Symposium on Biomedical Imaging (ISBI)(2013), pp. 1332–1335. 10.1109/ISBI.2013.6556778 [DOI] [Google Scholar]
- 31.Srinivasan P. P., Heflin S. J., Izatt J. A., Arshavsky V. Y., Farsiu S., “Automatic segmentation of up to ten layer boundaries in SD-OCT images of the mouse retina with and without missing layers due to pathology,” Biomed. Opt. Express 5(2), 348–365 (2014). 10.1364/BOE.5.000348 [DOI] [PMC free article] [PubMed] [Google Scholar]
- 32.Liu Y.-Y., Ishikawa H., Chen M., Wollstein G., Duker J. S., Fujimoto J. G., Schuman J. S., Rehg J. M., “Computerized macular pathology diagnosis in spectral domain optical coherence tomography scans based on multiscale texture and shape features,” Invest. Ophthalmol. Vis. Sci. 52(11), 8316–8322 (2011). 10.1167/iovs.10-7012 [DOI] [PMC free article] [PubMed] [Google Scholar]
- 33.Dalal N., Triggs B., “Histograms of oriented gradients for human detection,” in IEEE Computer Society Conference on Computer Vision and Pattern Recognition, 2005 (IEEE, 2005), pp. 886–893. 10.1109/CVPR.2005.177 [DOI] [Google Scholar]
- 34.Cortes C., Vapnik V., “Support-vector networks,” Mach. Learn. 20(3), 273–297 (1995). 10.1007/BF00994018 [DOI] [Google Scholar]
- 35.Fang L., Li S., Nie Q., Izatt J. A., Toth C. A., Farsiu S., “Sparsity based denoising of spectral domain optical coherence tomography images,” Biomed. Opt. Express 3(5), 927–942 (2012). 10.1364/BOE.3.000927 [DOI] [PMC free article] [PubMed] [Google Scholar]
- 36.Mayer M. A., Borsdorf A., Wagner M., Hornegger J., Mardin C. Y., Tornow R. P., “Wavelet denoising of multiframe optical coherence tomography data,” Biomed. Opt. Express 3(3), 572–589 (2012). 10.1364/BOE.3.000572 [DOI] [PMC free article] [PubMed] [Google Scholar]
- 37.Dabov K., Foi A., Katkovnik V., Egiazarian K., “Image Denoising by Sparse 3-D Transform-Domain Collaborative Filtering,” IEEE Trans. Image Process. 16(8), 2080–2095 (2007). 10.1109/TIP.2007.901238 [DOI] [PubMed] [Google Scholar]
- 38.Kuo A. N., McNabb R. P., Chiu S. J., El-Dairi M. A., Farsiu S., Toth C. A., Izatt J. A., “Correction of Ocular Shape in Retinal Optical Coherence Tomography and Effect on Current Clinical Measures,” Am. J. Ophthalmol. 156(2), 304–311 (2013). 10.1016/j.ajo.2013.03.012 [DOI] [PMC free article] [PubMed] [Google Scholar]
- 39.Burt P. J., Adelson E. H., “The Laplacian Pyramid as a Compact Image Code,” IEEE Trans. Commun. 31(4), 532–540 (1983). 10.1109/TCOM.1983.1095851 [DOI] [Google Scholar]
- 40.Age-Related Eye Disease Study Research Group , “A randomized, placebo-controlled, clinical trial of high-dose supplementation with vitamins C and E, beta carotene, and zinc for age-related macular degeneration and vision loss: AREDS report no. 8,” Arch. Ophthalmol. 119(10), 1417–1436 (2001). 10.1001/archopht.119.10.1417 [DOI] [PMC free article] [PubMed] [Google Scholar]