Colormap-Enhanced Vision Transformers for MRI-Based Multiclass (4-Class) Alzheimer’s Disease Classification


1 Introduction↩︎

Magnetic Resonance Imaging (MRI) is a widely used, non-invasive tool for assessing brain structure and detecting neurodegenerative diseases such as Alzheimer’s disease (AD) [1], [2]. Despite its clinical importance, automated analysis of MRI scans remains challenging due to the limited availability of annotated datasets, inter-patient variability, and subtle structural changes associated with early-stage AD, which are difficult to detect using conventional methods [3].

Recent advancements in deep learning, particularly Convolutional Neural Networks (CNNs), have demonstrated promising results in automated disease classification from brain MRI images [4]. However, CNNs typically focus on local patterns and often struggle to capture long-range spatial relationships that are crucial for detecting subtle neurodegenerative changes [5]. Moreover, most state-of-the-art models require large annotated datasets, limiting their applicability in scenarios where medical imaging data is scarce [6].

Vision Transformers (ViTs) have recently emerged as powerful models for image classification, effectively capturing long-range dependencies and global contextual information [7], [8]. However, the direct application of ViTs to grayscale MRI scans poses challenges, as most ViTs are pretrained on large-scale RGB natural image datasets. Existing adaptations, such as replicating the grayscale channel to create pseudo-RGB inputs or training ViTs from scratch, often fail to fully exploit structural and textural information in MRI scans, leading to suboptimal performance under limited data scenarios [9].

To address these challenges, we propose PseudoColorViT-Alz, a colormap-enhanced Vision Transformer framework that transforms grayscale MRI scans into pseudo-color representations, enabling better utilization of pretrained ViTs. This approach enhances contrast and structural cues in MRI images, allowing the model to capture subtle anatomical changes associated with Alzheimer’s disease (AD) without requiring extensive retraining.

We evaluate PseudoColorViT-Alz on the OASIS-1 dataset using a four-class classification setup (non-demented, moderate dementia, mild dementia, and very mild dementia). Our method achieves a state-of-the-art accuracy of 99.79% with an AUC of 100%, surpassing recent 2024–2025 CNN-based and Transformer approaches, which report accuracies between 96.1% and 99.68%. These results demonstrate that pseudo-color augmented Vision Transformers offer a robust and interpretable framework for MRI-based Alzheimer’s disease classification, providing an effective tool for early detection and clinical decision support.

a

b

c

d

Figure 1: Representative brain MRI samples from the OASIS-1 dataset illustrating the four Alzheimer’s disease categories used in this study..

2 Related Works↩︎

Automated analysis of brain MRI scans has become central to diagnosing neurodegenerative diseases such as Alzheimer’s disease (AD). Early machine learning methods relied heavily on handcrafted features, voxel-based morphometry, and statistical models. For example, support vector machines (SVMs) and classical CNN-based approaches [10], [11] demonstrated initial success in detecting structural changes associated with AD but were limited in feature generalization and scalability across diverse datasets.

With the advent of deep learning, Convolutional Neural Networks (CNNs) became the dominant paradigm for MRI-based AD classification. Models such as 3D-CNN [12], deep learning-based ensemble method  [13], and DenseNet architectures [14] achieved significant improvements in accuracy by learning hierarchical feature representations from MRI volumes. Ensemble-based CNNs further improved performance by combining multiple architectures [13]. However, these methods often require large annotated datasets and are sensitive to class imbalance, which can limit their generalization to smaller cohorts or different imaging centers.

Recent studies have explored hybrid and topological techniques to enhance feature extraction. Bazin and Pham [15] proposed a topology-preserving, anatomy-driven brain MRI segmentation framework (TOADS) that enforces structural and topological consistency during tissue classification. Feature selection methods such as mRMR [16], [17] have also been applied to reduce irrelevant features and improve interpretability in MRI-based AD diagnosis. While these approaches advance diagnostic accuracy, they still face limitations in computational efficiency and robustness, particularly on moderately sized datasets. Furthermore, a growing body of research has demonstrated the effectiveness of topological data analysis (TDA) for medical image classification. By capturing intrinsic geometric and structural properties of data, TDA-based approaches have been successfully applied across a range of medical imaging tasks, yielding improved robustness and discriminative performance [5], [18][23].

Vision Transformers (ViTs) [7], [8] have recently emerged as a promising alternative to CNNs, leveraging global self-attention mechanisms to capture long-range dependencies effectively. ViTs have shown potential in medical imaging tasks, including brain MRI analysis [24], [25], by providing superior global feature representation. Nonetheless, their direct application to grayscale MRI scans is challenging due to high computational cost and the need for large-scale training data. Standard adaptations such as channel replication or training from scratch often fail to exploit structural and textural information optimally. More applications of transfer learning and Vision Transformers in medical image analysis are explored in the following studies: [26][33].

To overcome these limitations, we propose PseudoColorViT-Alz, a colormap-enhanced Vision Transformer framework that transforms grayscale MRI scans into pseudo-color representations. This approach enhances subtle anatomical and structural patterns, allowing the model to fully leverage the global contextual modeling capability of Transformers. Our method achieves state-of-the-art performance on OASIS-1 for four-class Alzheimer’s disease classification, demonstrating robustness even with moderately sized datasets.

Figure 2: PseudoColorViT-Alz preprocessing pipeline. Overview of the complete data preprocessing workflow, illustrating the steps from raw brain MRI image acquisition, grayscale conversion, and pseudo-color enhancement to normalization, dataset construction, and input preparation for Vision Transformer–based multiclass Alzheimer’s disease classification.

3 Methodology↩︎

Figure 3: PseudoColorViT pipeline. The proposed framework follows the Vision Transformer architecture introduced in [7]. A 2D grayscale medical image is first converted into a pseudo-color representation, yielding a three-channel input that preserves anatomical structure while enhancing texture and contrast information. The pseudo-colored image is then partitioned into fixed-size patches, which are linearly projected and augmented with positional encodings. A learnable classification token is appended to the patch sequence and processed by the Transformer encoder. The final encoded representation is passed through a classification head to produce the disease prediction.

This section describes the proposed methodology for multiclass Alzheimer’s disease classification using brain MRI images from the OASIS-1 dataset. The overall pipeline consists of MRI image preprocessing with pseudo-color enhancement, dataset construction, Vision Transformer fine-tuning, model training with early stopping, and comprehensive evaluation using classification and ROC-based metrics.

3.1 Data Preparation and Pseudo-Color Preprocessing↩︎

Brain MRI scans from four Alzheimer’s disease categories—non-demented, moderate dementia, mild dementia, and very mild dementia—are first converted to grayscale intensity images and resized to a fixed spatial resolution of \(224 \times 224\) pixels. Since Vision Transformers are pretrained on RGB natural images, grayscale MRI scans are transformed into pseudo-color representations using the jet colormap. This process enhances subtle intensity variations and anatomical structures relevant to neurodegenerative progression.

Let \(\mathbf{I}_{\text{gray}} \in \mathbb{R}^{224 \times 224}\) denote a grayscale MRI image. Pseudo-color mapping is applied as \[\mathbf{I}_{\text{rgb}} = \text{Colormap}\left(\frac{\mathbf{I}_{\text{gray}}}{255}\right),\] where \(\mathbf{I}_{\text{rgb}} \in \mathbb{R}^{224 \times 224 \times 3}\) represents the three-channel pseudo-color image. Pixel values are normalized to the range \([0,1]\) to stabilize training: \[\mathbf{I}_{\text{norm}} = \frac{\mathbf{I}_{\text{rgb}}}{255}.\]

Each image tensor is permuted to PyTorch’s channel-first format \((C, H, W)\) before being passed to the network.

3.2 Dataset Construction and Splitting↩︎

The final dataset is constructed by concatenating pseudo-color MRI images from all four classes and assigning integer labels as follows: \(0\) (non-demented), \(1\) (mild dementia), \(2\) (moderate dementia), and \(3\) (very mild dementia). The combined dataset is randomly split into training and testing subsets using an 80:20 ratio. A custom PyTorch Dataset class is implemented to map each image \(\mathbf{I}_i\) to its corresponding label \(y_i \in \{0,1,2,3\}\). Mini-batches of size 32 are generated using DataLoader with shuffling enabled for training.

3.3 Vision Transformer Architecture↩︎

The backbone model employed is the pretrained google/vit-base-patch16-224 Vision Transformer, fine-tuned for four-class Alzheimer’s disease classification. Each input image \(\mathbf{I} \in \mathbb{R}^{3 \times 224 \times 224}\) is divided into non-overlapping patches of size \(16 \times 16\), yielding \(N=196\) patches. Each patch is flattened and linearly projected into a latent embedding space: \[\mathbf{E}_i = \mathbf{W}\cdot \text{Flatten}(\text{Patch}_i) + \mathbf{b}, \quad i=1,\dots,N.\]

A learnable classification token \(\mathbf{x}_{\text{cls}}\) is prepended, and positional embeddings \(\mathbf{p}_i\) are added to preserve spatial information: \[\mathbf{z}^0 = [\mathbf{x}_{\text{cls}}, \mathbf{E}_1 + \mathbf{p}_1, \dots, \mathbf{E}_N + \mathbf{p}_N].\]

The sequence is processed by a stack of transformer encoder layers, each comprising multi-head self-attention and feed-forward networks. The self-attention mechanism is defined as \[\text{Attention}(\mathbf{Q}, \mathbf{K}, \mathbf{V}) = \text{Softmax}\left(\frac{\mathbf{QK}^\top}{\sqrt{d_k}}\right)\mathbf{V},\] followed by residual connections and layer normalization: \[\mathbf{z}^{\ell+1} = \text{LayerNorm}(\mathbf{z}^{\ell} + \text{FFN}(\mathbf{z}^{\ell})).\]

The final hidden state of the classification token \(\mathbf{z}^L_{\text{cls}}\) is passed to a fully connected classification head with Softmax activation: \[\hat{\mathbf{y}} = \text{Softmax}(\mathbf{W}_{\text{cls}}\mathbf{z}^L_{\text{cls}} + \mathbf{b}_{\text{cls}}).\]

3.4 Training Strategy↩︎

Model optimization is performed using the categorical cross-entropy loss: \[\mathcal{L} = -\frac{1}{B}\sum_{i=1}^{B}\sum_{c=1}^{4} y_{i,c}\log(\hat{y}_{i,c}),\] where \(B\) denotes the batch size and \(C=4\) the number of classes. The Adam optimizer is used with a learning rate of \(1\times10^{-4}\). Training is conducted for a maximum of 50 epochs with early stopping (patience = 2) based on test accuracy. The best-performing model is saved automatically.

3.5 Evaluation Metrics↩︎

a

b

Figure 4: Performance evaluation of PseudoColorViT-Alz on the OASIS-1 dataset. The left panel shows one-vs-rest ROC curves and corresponding AUC values for each Alzheimer’s disease class, while the right panel presents the confusion matrix illustrating class-wise prediction performance..

Model performance is assessed on the held-out test set using accuracy, macro-averaged precision, recall, and multi-class area under the ROC curve (AUC) using a one-vs-rest strategy. Final predictions are obtained as \[\hat{y}_i = \arg\max_c \hat{y}_{i,c}.\]

Additionally, confusion matrices are generated to visualize class-wise prediction behavior 4 (b), and ROC curves 4 (a) are plotted for each Alzheimer’s disease category to analyze sensitivity–specificity trade-offs. All experiments are implemented in PyTorch with GPU acceleration when available.

Figure 5: PseudoColorViT-Alz: MRI-Based Multiclass Alzheimer’s Disease Classification

4 Experiment↩︎

4.1 Datasets↩︎

[34]

The OASIS-1 dataset is a widely used cross-sectional structural MRI collection containing T1-weighted brain scans from 416 adult subjects aged 18–96 years. Each participant contributes three or four individual T1-weighted MRI scans acquired within the same session, enabling high signal-to-noise averaging and robust morphometric analysis. Among the 416 subjects, 100 individuals over the age of 60 are clinically diagnosed with very-mild to moderate Alzheimer’s disease (AD), while the remaining 316 subjects serve as nondemented controls. Because each subject provides 3–4 scans, this corresponds to approximately 300–400 AD images and 950–1300 control images, forming two distinct classes with balanced scan quality but differing diagnostic labels. The dataset also includes a reliability subset of 20 nondemented subjects who were rescanned within roughly 90 days, allowing test–retest reproducibility evaluation. In addition to raw T1-weighted images, OASIS-1 provides motion-corrected averages, atlas-registered volumes, gain-field corrected images, and brain-masked versions, along with segmentation outputs separating grey matter, white matter, and cerebrospinal fluid. Rich metadata are supplied for each subject, including demographic variables (age, sex, handedness), clinical dementia ratings, and volumetric measures such as estimated total intracranial volume, normalized whole-brain volume, and atlas scaling factors. Owing to its well-curated structure, consistent acquisition protocol, and presence of both healthy and Alzheimer’s subjects, OASIS-1 is one of the most extensively used datasets for studies on aging, neurodegeneration, structural brain analysis, and algorithm validation.

In our experiments, we categorized the OASIS-1 MRI data into four diagnostic classes: nondemented, very mild dementia, mild dementia, and moderate dementia. To ensure balanced and robust training, we constructed class-specific subsets from the available scans. The final dataset used for model development consisted of 5000 nondemented samples, 5000 very mild dementia samples, 5002 mild dementia samples, and 488 moderate dementia samples. This class distribution reflects both the natural availability of subjects in the OASIS-1 cohort and the necessity of preserving diagnostic diversity for effective classification. The substantially smaller number of moderate dementia cases aligns with the original dataset’s clinical demographics, whereas the larger nondemented and early-stage dementia subsets allowed the model to capture subtle structural variations associated with Alzheimer’s progression.

4.2 Experimental Setup↩︎

Training–Test Split: Following common practice in the literature for OASIS-based Alzheimer’s disease classification, the dataset is partitioned into training and testing subsets using an 80:20 ratio.

No Data Augmentation: Unlike traditional CNNs and deep learning methods that rely heavily on extensive data augmentation to handle small, imbalanced datasets [35], our model PseudoColorViT-Alz leverages pre-trained backbones and does not require augmentation. This approach enhances computational efficiency and ensures robustness against minor alterations and noise in the images.

Model Hyperparameters: We employed the ViT-Base model (vit-base-patch16-224) from the Hugging Face Transformers library, pre-trained on ImageNet. The model was fine-tuned using the Adam optimizer with a learning rate of \(1 \times 10^{-4}\) and a batch size of 32. Cross-entropy loss was used as the objective function. The training was performed for up to 50 epochs with early stopping based on test accuracy, using a patience of 2 epochs. Input images were resized to \(224 \times 224\) pixels, and pixel values were normalized to the \([0,1]\) range.

Runtime Platform: All experiments were executed on a computing cluster integrated with an NVIDIA GPU cluster infrastructure, while preliminary tests and lightweight debugging were performed on a personal laptop equipped with an Intel(R) Core(TM) i7-8565U processor (1.80 GHz) and 16 GB of RAM. We implemented our experiment in Python, and our code is publicly available at 1.

5 Results↩︎

This section presents a comparative evaluation of the proposed PseudoColorViT-Alz model against recently published state-of-the-art methods for four-class Alzheimer’s disease classification using OASIS or OASIS-derived MRI datasets. Table 1 summarizes the quantitative performance of competing approaches in terms of classification accuracy and, where available, area under the ROC curve (AUC).

Among existing CNN-based approaches, the deep multi-scale CNN proposed by Femmam et al. [36] achieved an accuracy of 98.00% with an AUC of 99.33% using a 90:10 train–test split. More recent CNN architectures incorporating data augmentation techniques, such as the method reported by Dardouri [37], improved classification performance to 99.68% accuracy on a larger OASIS-derived MRI dataset, albeit without reporting AUC. Similarly, the novel CNN architecture presented in [38] attained an accuracy of 98.92% under an 80:20 split, demonstrating strong performance but remaining limited by the local receptive field characteristics of convolutional models. In contrast, the four-way Siamese CNN [39], evaluated on OASIS-3, reported a comparatively lower accuracy of 96.10% with an AUC of 97.20%, highlighting the increased difficulty of multi-class classification under cross-subject variability.

In comparison, the proposed PseudoColorViT-Alz model achieves the highest overall performance, attaining an accuracy of 99.79% and a perfect AUC of 100.00% on the OASIS-1 dataset using an 80:20 train–test split. This improvement can be attributed to the integration of pseudo-color enhancement with Vision Transformer-based global self-attention, which enables more effective modeling of subtle structural variations associated with different stages of Alzheimer’s disease. Notably, PseudoColorViT-Alz outperforms recent 2024–2025 CNN-based and Siamese-network methods while maintaining robustness on a moderately sized dataset.

Overall, these results demonstrate that colormap-enhanced Vision Transformers provide a significant advantage for multiclass MRI-based Alzheimer’s disease classification. The proposed approach establishes a new state of the art on OASIS-1 and confirms the effectiveness of pseudo-color representations for enhancing feature discrimination in grayscale medical imaging.

Table 1: Published accuracy results for four-class Alzheimer’s disease classification on OASIS or OASIS-derived MRI datasets.
OASIS / OASIS-derived MRI Dataset: 4-Class Classification Results
Method # Classes Dataset Train:Test Accuracy AUC
Deep Multi-scale CNN [36] 4 OASIS (MRI) 90:10 98.00% 99.33%
CNN (DA + augmentation) [37] 4 OASIS (Kaggle MRI) 70:30 99.68%
Novel CNN Architecture [38] 4 OASIS MRI 80:20 98.92%
Four-way Siamese CNN [39] 4 OASIS-3 MRI 80:20 96.10% 97.20%
PseudoColorViT-Alz (Ours) 4 OASIS-1 80:20 99.79% 100.00%

6 Discussion↩︎

The results presented in this study demonstrate that integrating pseudo-color enhancement with Vision Transformer architectures offers substantial benefits for MRI-based multiclass Alzheimer’s disease classification. The proposed PseudoColorViT-Alz consistently outperforms recent CNN-based and Siamese-network approaches on the OASIS-1 dataset, achieving superior accuracy and AUC in a challenging four-class classification setting. These findings highlight the importance of both global contextual modeling and enhanced feature representation when analyzing subtle neurodegenerative patterns in brain MRI scans.

One key factor contributing to the improved performance of PseudoColorViT-Alz is the use of colormap-based pseudo-color transformation. While brain MRI images are inherently grayscale, pseudo-color encoding amplifies intensity variations and structural boundaries, making subtle anatomical changes more distinguishable to the model. This enhanced representation aligns more effectively with Vision Transformers pretrained on natural RGB images, allowing the network to exploit learned representations without extensive retraining or architectural modification.

In contrast to conventional CNNs, which primarily focus on localized receptive fields, Vision Transformers leverage self-attention mechanisms to capture long-range spatial dependencies across the entire brain. This global modeling capability is particularly advantageous for Alzheimer’s disease classification, where pathological changes often span multiple brain regions rather than being confined to localized areas. The superior performance of PseudoColorViT-Alz relative to recent CNN-based methods underscores the limitations of purely convolutional architectures for multiclass neurodegenerative disease classification.

Despite its strong performance, several considerations warrant discussion. First, although the proposed method demonstrates robustness on the OASIS-1 dataset, further validation on additional datasets such as ADNI or OASIS-3 would strengthen generalizability claims. Second, while pseudo-color enhancement improves feature separability, the choice of colormap may influence performance and interpretability, suggesting an avenue for future optimization. Finally, although Vision Transformers are computationally more demanding than CNNs, the observed performance gains justify their use in clinical decision-support systems where diagnostic accuracy is paramount.

Overall, this study establishes that colormap-enhanced Vision Transformers provide a powerful and effective framework for MRI-based Alzheimer’s disease classification. The proposed approach advances the state of the art in multiclass AD diagnosis and offers a promising direction for developing reliable, interpretable, and scalable neuroimaging-based diagnostic tools.

7 Conclusion↩︎

In this work, we presented PseudoColorViT-Alz, a colormap-enhanced Vision Transformer framework for multiclass MRI-based Alzheimer’s disease classification. By transforming grayscale brain MRI scans into pseudo-color representations, the proposed method effectively enhances structural contrast and texture information, enabling Vision Transformers to capture subtle anatomical variations associated with different stages of Alzheimer’s disease.

Comprehensive experiments conducted on the OASIS-1 dataset using a four-class classification protocol (non-demented, very mild dementia, mild dementia, and moderate dementia) demonstrate that PseudoColorViT-Alz achieves state-of-the-art performance, attaining an accuracy of 99.79% and an AUC of 100%. Comparative analysis against recently published 2024–2025 methods confirms the superiority of the proposed approach over existing CNN-based and Siamese-network models.

The results highlight the effectiveness of integrating pseudo-color enhancement with global self-attention mechanisms for neuroimaging analysis. PseudoColorViT-Alz offers a robust, interpretable, and data-efficient solution for Alzheimer’s disease classification and shows strong potential as a clinical decision-support tool. Future work will focus on validating the framework across larger multi-center datasets and exploring adaptive colormap strategies to further enhance generalization and interpretability.

Declarations↩︎

Funding
The author received no financial support for the research, authorship, or publication of this work.

Author’s Contribution
Faisal Ahmed conceptualized the study, downloaded the data, prepared the code, performed the data analysis and wrote the manuscript. Faisal Ahmed reviewed and approved the final version of the manuscript.

Acknowledgement
The authors utilized an online platform to check and correct grammatical errors and to improve sentence readability.

Conflict of interest/Competing interests
The authors declare no conflict of interest.

Ethics approval and consent to participate
Not applicable. This study did not involve human participants or animals, and publicly available datasets were used.

Consent for publication
Not applicable.

Data availability
The datasets used in this study are publicly available online.

Materials availability
Not applicable.

Code availability
The source code used in this study is publicly available at https://github.com/FaisalAhmed77/RepViT-CXR.

References↩︎

[1]
C. R. Jack, M. A. Bernstein, N. C. Fox, et al., “The alzheimer’s disease neuroimaging initiative (ADNI): MRI methods,” Journal of Magnetic Resonance Imaging, vol. 27, no. 4, pp. 685–691, 2008.
[2]
L. Mosconi, “Early detection of alzheimer’s disease using MRI and FDG-PET,” Journal of Alzheimer’s Disease, vol. 8, no. 3, pp. 237–252, 2005.
[3]
S. Liu, Y. Li, et al., “Deep learning in alzheimer’s disease: Diagnostic and prognostic applications,” Computers in Biology and Medicine, vol. 136, p. 104709, 2021.
[4]
X. Zhang and D. Shen, “Multi-modal deep learning for alzheimer’s disease diagnosis using MRI and PET,” IEEE Transactions on Medical Imaging, vol. 40, no. 5, pp. 1445–1456, 2021.
[5]
F. Ahmed, B. Nuwagira, F. Torlak, and B. Coskunuzer, “Topo-CXR: Chest X-ray TB and Pneumonia Screening with Topological Machine Learning,” in Proceedings of the IEEE/CVF international conference on computer vision, 2023, pp. 2326–2336.
[6]
M. Hernandez et al., “Ensemble deep learning for alzheimer’s disease diagnosis,” Computer Methods and Programs in Biomedicine, vol. 175, pp. 33–42, 2019.
[7]
A. Dosovitskiy, L. Beyer, et al., “An image is worth 16x16 words: Transformers for image recognition at scale,” in International conference on learning representations (ICLR), 2021.
[8]
Z. Liu, Y. Lin, et al., “Swin transformer: Hierarchical vision transformer using shifted windows,” in IEEE international conference on computer vision (ICCV), 2021, pp. 10012–10022.
[9]
M. Tougaccar et al., “Deep learning for MRI-based alzheimer’s disease classification: Current trends and challenges,” Neurocomputing, vol. 411, pp. 354–373, 2020.
[10]
S. Klöppel et al., “Automatic classification of MR scans in alzheimer’s disease,” Neurobiology of Aging, 2008, [Online]. Available: https://pubmed.ncbi.nlm.nih.gov/18202106/.
[11]
et al. Zhang, “Voxel-based morphometry and a deep learning model for the diagnosis of early alzheimer’s disease based on cerebral gray matter changes,” Cerebral Cortex, 2022, [Online]. Available: https://pubmed.ncbi.nlm.nih.gov/35301516/.
[12]
A. Ebrahimi, S. Luo, and for the A. Disease Neuroimaging Initiative, “Convolutional neural networks for alzheimer’s disease detection on MRI images,” Journal of Medical Imaging, vol. 8, no. 2, pp. 024503–024503, 2021.
[13]
S. Fathi, A. Ahmadi, A. Dehnad, M. Almasi-Dooghaee, M. Sadegh, and A. D. N. Initiative, “A deep learning-based ensemble method for early diagnosis of alzheimer’s disease using MRI images,” Neuroinformatics, vol. 22, no. 1, pp. 89–105, 2024.
[14]
Q. Wang, Y. Li, C. Zheng, and R. Xu, “DenseCNN: A densely connected CNN model for alzheimer’s disease classification based on hippocampus MRI data,” in AMIA annual symposium proceedings, 2021, vol. 2020, p. 1277.
[15]
P.-L. Bazin and D. L. Pham, “Topology-preserving tissue classification of magnetic resonance brain images,” IEEE transactions on medical imaging, vol. 26, no. 4, pp. 487–496, 2007.
[16]
H. Alshamlan, A. Alwassel, A. Banafa, and L. Alsaleem, “Improving alzheimer’s disease prediction with different machine learning approaches and feature selection techniques,” Diagnostics, vol. 14, no. 19, p. 2237, 2024.
[17]
H. Alshamlan, S. Omar, R. Aljurayyad, and R. Alabduljabbar, “Identifying effective feature selection methods for alzheimer’s disease biomarker gene detection using machine learning,” Diagnostics, vol. 13, no. 10, p. 1771, 2023.
[18]
F. Ahmed, M. A. N. Bhuiyan, and B. Coskunuzer, “Topo-CNN: Retinal image analysis with topological deep learning,” Journal of Imaging Informatics in Medicine, pp. 1–17, 2025.
[19]
F. Ahmed and B. Coskunuzer, “ToFi-ML: Retinal image screening with topological machine learning,” in Annual conference on medical image understanding and analysis, 2023, pp. 281–297.
[20]
F. Ahmed, “Topological machine learning in medical image analysis,” PhD thesis, The University of Texas at Dallas, 2023.
[21]
A. Yadav, F. Ahmed, O. Daescu, R. Gedik, and B. Coskunuzer, “Histopathological cancer detection with topological signatures,” in 2023 IEEE international conference on bioinformatics and biomedicine (BIBM), 2023, pp. 1610–1619.
[22]
F. Ahmed and M. A. N. Bhuiyan, “Topological signatures vs. Gradient histograms: A comparative study for medical image classification,” arXiv preprint arXiv:2507.03006, 2025.
[23]
F. Ahmed, “3D-TDA: Topological feature extraction from 3D MRI for alzheimer’s disease classification,” Available at SSRN 5882122, 2025.
[24]
C. Sankari, V. Jamuna, and A. Kavitha, “Hierarchical multi-scale vision transformer model for accurate detection and classification of brain tumors in MRI-based medical imaging,” Scientific Reports, vol. 15, no. 1, p. 38275, 2025.
[25]
N. J. Dhinagar, S. I. Thomopoulos, E. Laltoo, and P. M. Thompson, “Efficiently training vision transformers on structural mri scans for alzheimer’s disease detection,” in 2023 45th annual international conference of the IEEE engineering in medicine & biology society (EMBC), 2023, pp. 1–6.
[26]
F. Ahmed, “HOG-CNN: Integrating histogram of oriented gradients with convolutional neural networks for retinal image classification,” arXiv preprint arXiv:2507.22274, 2025.
[27]
F. Ahmed and M. J. Uddin, “OcuViT: A vision transformer-based approach for automated diabetic retinopathy and AMD classification,” Journal of Imaging Informatics in Medicine, pp. 1–11, 2025.
[28]
F. Ahmed and M. A. N. Bhuiyan, “Robust five-class and binary diabetic retinopathy classification using transfer learning and data augmentation,” arXiv preprint arXiv:2507.17121, 2025.
[29]
F. Ahmed, “HistoViT: Vision transformer for accurate and scalable histopathological cancer diagnosis,” arXiv preprint arXiv:2508.11181, 2025.
[30]
F. Ahmed et al., “Transfer learning with vision transformers for MRI-based alzheimer’s disease classification,” Medical Image Analysis, 2025.
[31]
F. Ahmed, “Repvit-cxr: A channel replication strategy for vision transformers in chest x-ray tuberculosis and pneumonia classification,” arXiv preprint arXiv:2509.08234, 2025.
[32]
F. Ahmed, “PseudoColorViT-CXR: Colormap-enhanced vision transformers for tuberculosis and pneumonia detection from grayscale chest x-ray images,” Available at SSRN 5547319, 2025.
[33]
R. Rawat and F. Ahmed, “Efficient breast and ovarian cancer classification via ViT-based preprocessing and transfer learning,” arXiv preprint arXiv:2509.18553, 2025.
[34]
D. S. Marcus, T. H. Wang, J. Parker, J. G. Csernansky, J. C. Morris, and R. L. Buckner, “Open access series of imaging studies (OASIS): Cross-sectional MRI data in young, middle aged, nondemented, and demented older adults,” Journal of Cognitive Neuroscience, vol. 19, no. 9, pp. 1498–1507, 2007, doi: 10.1162/jocn.2007.19.9.1498.
[35]
B. Goutam, M. F. Hashmi, Z. W. Geem, and N. D. Bokde, “A comprehensive review of deep learning strategies in retinal disease diagnosis using fundus images,” IEEE Access, 2022.
[36]
M. Femmam, S. Femmam, M. E. Fareh, O. A. Senni, and A. Ferhani, “Deep learning-based classification and diagnosis of alzheimer’s & dementia using multi-scale feature extraction from baseline MRI scans,” Journal of Image and Graphics, vol. 12, no. 4, pp. 427–436, 2024.
[37]
S. Dardouri, “An efficient method for early alzheimer’s disease detection based on MRI images using deep convolutional neural networks,” Frontiers in Artificial Intelligence, vol. 8, p. 1563016, 2025, doi: 10.3389/frai.2025.1563016.
[38]
A. M. El-Assy et al., “A novel CNN architecture for accurate early detection and classification of alzheimer’s disease using MRI data,” Scientific Reports, 2024, doi: 10.1038/s41598-024-53733-6.
[39]
M. Adil et al., “Four-way classification of alzheimer’s disease using deep siamese convolutional neural network with triplet-loss function,” Brain Informatics, vol. 10, p. 45, 2023, doi: 10.1186/s40708-023-00184-w.

  1. https://github.com/FaisalAhmed77/RepViT-CXR↩︎