Medical Image Enhancement: Methods, Evaluation, and Clinical Utility
Medical image enhancement refers to computational techniques that improve the visual quality or standardize the appearance of images acquired through modalities such as computed tomography (CT), radiography, histopathology, and retinal imaging. These methods aim to increase contrast, reduce noise, normalize color or intensity distributions, and correct acquisition-related artifacts so that diagnostically relevant structures become more visible to human readers or more consistent as inputs to automated analysis systems. This article provides a practical comparison of enhancement and normalization techniques, guidance on selecting methods for specific clinical workflows, and evaluation considerations for researchers and analysts working with medical imaging data.
Scope and Reader Context
This review is intended for students, researchers, analysts, and life-science professionals who work with medical images in research or clinical support roles. The content covers contrast enhancement techniques, color and stain normalization methods for histopathology, intensity normalization for radiological images, and practical considerations for integrating these methods into image analysis pipelines. The emphasis is on concrete decisions: which method to apply, when to apply it, how to evaluate the result, and what limitations to document. Clinical decision-making remains the responsibility of licensed practitioners, and image enhancement does not replace diagnostic interpretation.
Why Medical Images Require Enhancement and Normalization
Medical images are acquired under variable conditions that affect their appearance. CT imaging of the heart requires careful attention to patient selection, medication, radiation protection, contrast enhancement, and acquisition parameters because the continuously moving heart presents technical challenges that other CT applications do not face [7]. Similarly, CT assessment of emphysema depends on image quality for both qualitative evaluation and quantitative measurement, with CT potentially outperforming pulmonary function tests in longitudinal assessment of drug therapies [8]. These examples illustrate that image appearance directly influences diagnostic utility.
Histopathology images present a distinct challenge. Hematoxylin and eosin (H&E) staining has been the gold standard for tissue analysis for decades, but tissue specimens stained in different laboratories vary significantly in appearance [15]. This variation arises from differences in staining protocols, reagent batches, and laboratory conditions. A multicenter dataset created by distributing tissue samples from colon, kidney, and skin blocks to 66 different laboratories for routine H&E staining demonstrated that staining variation can be isolated and studied when other factors affecting tissue appearance are kept constant [15]. This variation poses challenges for both pathologists and AI-based downstream analysis [15].
Staining variability also affects deep learning models used for computer-aided diagnosis. Staining variations and distortions caused by digital pathology scanners during image digitization cause performance degradation in deep learning-based systems [16]. Models may overfit to color differences instead of learning morphological features, weakening cross-domain generalization [19]. For oral squamous cell carcinoma classification, stain-related features were disentangled from morphological and structural information, and a gated suppression mechanism reduced color interference while enhancing tissue architecture and cellular morphology cues [19].
Core Principles of Image Enhancement
Image enhancement methods operate on the assumption that the acquired image contains diagnostically relevant information that is suboptimally displayed due to contrast limitations, noise, or intensity range compression. Enhancement techniques aim to remap pixel intensities, filter spatial frequencies, or transform color spaces to improve visibility of structures of interest.
Contrast Enhancement
Contrast enhancement techniques adjust the distribution of pixel intensities to make differences between tissue types or structures more apparent. Histogram-based methods are among the most widely used approaches. These methods analyze the histogram of pixel intensities and apply transformations that spread the intensity distribution across the available dynamic range. Comparative assessments of histogram-based medical image contrast enhancement techniques have been implemented and evaluated for their effectiveness [32]. The choice of technique depends on the modality, the tissue of interest, and the specific diagnostic task.
Contrast-Limited Adaptive Histogram Equalization (CLAHE) is a variant that operates on local image regions instead of the global histogram. CLAHE limits contrast amplification to avoid amplifying noise in homogeneous areas. In a study optimizing CT image quality for chest cancer diagnostics, preprocessing included image enhancement, normalization, size adjustments, and CLAHE for contrast enhancement before classification with MobileNetV2 [26]. The enhanced images supported classification accuracy of 91.07% [26].
Intensity Normalization
Intensity normalization standardizes the range and distribution of pixel values across images from different patients, scanners, or acquisition protocols. This is particularly important for quantitative analysis and for training deep learning models that expect consistent input distributions. Normalization of pixel values is a standard preprocessing step in deep learning pipelines for medical image classification [22].
For tuberculosis detection from chest X-rays, preprocessing included resizing images to 256x256 pixels, normalization of pixel values, and data augmentation to increase variability and avoid overfitting [22]. The fine-tuned ResNet50 model achieved 91% accuracy on this task [22].
Color and Stain Normalization
Color normalization methods standardize the appearance of histopathology images across different staining conditions. Traditional methods include histogram matching, Macenko normalization, Vahadane normalization, and Reinhard normalization [15]. Deep learning-based methods include CycleGAN and Pix2pix variants [15]. A benchmarking study compared eight different stain normalization methods on a multicenter dataset and used both quantitative and qualitative evaluation to assess performance [15].
Macenko stain normalization is a widely used traditional method that estimates stain vectors and normalizes the stain concentration in the image. In a study on mitosis detection in breast cancer histopathology, preprocessing used color channel normalization (zero-mean normalization) and stain normalization with Macenko Stain Normalization, followed by artifact removal via median filtering and contrast enhancement using histogram equalization [17]. The proposed framework achieved 99.2% accuracy [17].
Deep learning-based normalization methods have shown strong performance. A four-stage normalization pipeline comprising CLAHE, histogram matching, Shades-of-Gray correction, and Macenko stain normalization was developed to standardize color distribution and enhance structural clarity across 7909 breast cancer histopathology images [20]. The framework achieved accuracies of 92.1%, 92.9%, 93.5%, and 94.0% across four magnifications [20].
At a Glance: Enhancement Method Comparison
The following table summarizes common enhancement and normalization methods, their primary use cases, and implementation considerations.
| Method | Primary Use Case | Implementation Considerations | Typical Workflow Position |
|---|---|---|---|
| Histogram Equalization | Global contrast improvement in radiographs and CT images | Simple to implement, may amplify noise in homogeneous regions | After intensity normalization, before feature extraction |
| CLAHE | Local contrast enhancement in CT, X-ray, and retinal images | Requires tuning of clip limit and tile size, effective for heterogeneous tissue | After resizing and normalization |
| Reinhard Normalization | Color standardization in histopathology | Transfers color statistics from reference image, fast and simple | Before stain-specific analysis or model training |
| Macenko Stain Normalization | H&E stain separation and standardization | Estimates stain vectors, requires parameter tuning for robust performance | Before downstream classification or segmentation |
| CycleGAN-Based Normalization | Stain normalization with complex appearance variation | Requires paired or unpaired training data, computationally intensive | When traditional methods fail to generalize across centers |
| Intensity Normalization (Zero-Mean) | Standardizing pixel value distributions for deep learning | Scales data to zero mean and unit variance, essential for many architectures | First step in most preprocessing pipelines |
Practical Workflow for Image Enhancement
Implementing image enhancement in a clinical or research workflow requires a structured approach. The following steps provide a practical framework for selecting and applying enhancement methods.
Step 1: Define the Diagnostic or Analytical Objective
The choice of enhancement method depends on the downstream task. For visual interpretation by radiologists, contrast enhancement that preserves anatomical fidelity is critical. For automated classification, normalization that reduces batch effects and acquisition variability may be more important than perceptual improvement. For quantitative analysis, methods that preserve intensity relationships and avoid introducing artifacts are essential.
Step 2: Assess Image Acquisition Conditions
Document the acquisition protocol, scanner type, staining protocol, and any known sources of variability. For histopathology, note the laboratory, staining batch, and scanner used for digitization. For CT, record acquisition parameters, contrast administration, and reconstruction settings. This documentation supports interpretation of enhancement results and troubleshooting when images fail to normalize properly.
Step 3: Select Enhancement Methods Based on Image Characteristics
For images with poor global contrast, histogram equalization or CLAHE may be appropriate. For histopathology images with staining variability, stain normalization methods such as Reinhard or Macenko should be considered. For deep learning pipelines, intensity normalization is typically required regardless of other enhancement steps.
Step 4: Implement and Validate the Enhancement Pipeline
Apply the selected methods to a validation set of images with known ground truth or established diagnostic findings. Compare enhanced images with originals to confirm that diagnostically relevant structures remain visible and that no artifacts are introduced. For automated analysis, evaluate whether enhancement improves downstream model performance instead of merely changing image appearance.
Step 5: Document Parameters and Reproducibility
Record all parameters used in the enhancement pipeline, including clip limits for CLAHE, reference images for color normalization, and normalization statistics. This documentation supports reproducibility and enables consistent application across batches of images.
Options and Tradeoffs in Enhancement Methods
Traditional Contrast Enhancement Methods
Histogram equalization redistributes pixel intensities to approximate a uniform histogram, which can improve contrast in images with narrow intensity ranges. However, global histogram equalization can over-enhance noise and produce unnatural appearances in images with large homogeneous regions. Adaptive methods such as CLAHE operate on local regions and provide more controlled enhancement but require parameter tuning.
Comparative studies of contrast enhancement techniques for medical images have been conducted to assess their relative performance [29]. Reviews of medical image contrast enhancement techniques summarize the landscape of available methods and their applications [30]. Tri-modal techniques that combine multiple enhancement approaches have also been proposed [31]. Multiresolution approaches using Gabor wavelet transforms represent another category of enhancement methods [33].
Stain Normalization Methods
Traditional stain normalization methods differ in their underlying assumptions and computational requirements. Reinhard normalization transfers color statistics from a reference image to the target image, which is simple and fast but may not fully separate stain components. Macenko normalization estimates stain vectors and normalizes stain concentrations, providing more principled stain separation. Vahadane normalization uses sparse non-negative matrix factorization to estimate stain density maps.
Deep learning-based methods such as CycleGAN learn image-to-image mappings that can handle complex appearance variations. StainFuser, a conditional latent diffusion model, produces high-quality stain normalization but is computationally expensive with its default scheduler [14]. Replacing the Pseudo Numerical Methods for Diffusion Models (PNDM) scheduler with DPM-Solver++, a high-order ordinary differential equations solver, achieved a 1.92x speedup with 10 steps while improving the Stain Normalization Quality Score by 3.7% [14]. DPM-Solver++ at only 5 steps surpassed PNDM at 50 steps in both speed and quality [14].
Hierarchical multi-stain CycleGAN frameworks have been developed to learn normalization mappings by exploiting underlying hierarchical and network structures in digital pathology images [16]. The HMS-CycleGAN normalizer generated more robust and consistent normalization across diverse staining variations compared to state-of-the-art methods, and normalization consistently led to superior classification performance compared to classifiers trained without image normalization [16].
Continual Learning Considerations
For clinical AI models that must adapt to new diagnostic categories over time, continual learning approaches are increasingly important. However, application to histopathology remains challenging due to privacy constraints, expanding diagnostic categories, and staining variability [13]. A benchmarking study of continual learning methods on histopathology image classification found that dataset-level normalization consistently achieved the best performance among evaluated normalization strategies [13]. Replay-based methods achieved higher accuracy and lower forgetting when exemplar storage and sufficient computational resources were available [13].
Observations and Measurements for Enhancement Evaluation
Evaluating the effectiveness of image enhancement requires both quantitative metrics and qualitative assessment. Quantitative metrics measure properties such as contrast, entropy, edge preservation, and structural similarity. Qualitative assessment involves visual inspection by domain experts who can judge whether diagnostically relevant structures are more visible and whether artifacts have been introduced.
Quantitative Evaluation Metrics
For contrast enhancement, metrics such as contrast improvement index, peak signal-to-noise ratio, and structural similarity index provide quantitative measures of enhancement quality. For stain normalization, the Stain Normalization Quality Score (SNQS) jointly quantifies structural preservation and stain fidelity in LAB color space [14]. This metric was used to evaluate StainFuser normalization performance, demonstrating that DPM-Solver++ improved SNQS by 3.7% compared to the default scheduler [14].
Qualitative Evaluation
Qualitative evaluation involves visual inspection of enhanced images by pathologists or radiologists who assess whether enhancement improves diagnostic utility. In the multicenter stain normalization benchmarking study, both quantitative and qualitative evaluation were used to assess method performance [15]. Qualitative assessment is essential because quantitative metrics do not always correlate with diagnostic utility.
Downstream Task Performance
For automated analysis, the most relevant evaluation is whether enhancement improves downstream task performance. Classification accuracy, F1-score, and area under the receiver operating characteristic curve are commonly used metrics. In oral squamous cell carcinoma classification, the proposed framework achieved accuracy of 87.35%, F1 of 91.27%, and AUC of 98.04% on one test set, and accuracy of 79.34%, F1 of 86.86%, and AUC of 90.74% on another test set [19]. External validation on an independent retrospective clinical cohort showed stable performance [19].
Records and Documentation Requirements
Maintaining detailed records of enhancement procedures is essential for reproducibility, quality control, and regulatory compliance. The following records should be maintained for each enhancement pipeline.
Image Metadata
Record the original image acquisition parameters, including modality, scanner model, acquisition protocol, and any contrast administration details. For histopathology, record the staining protocol, laboratory, and digitization scanner. This metadata supports interpretation of enhancement results and troubleshooting.
Enhancement Parameters
Document all parameters used in the enhancement pipeline, including algorithm choices, parameter values, and reference images used for normalization. For CLAHE, record the clip limit and tile size. For Macenko normalization, record the stain vector estimation parameters. For deep learning-based methods, record the model architecture, training data, and inference settings.
Validation Results
Maintain records of validation results, including quantitative metrics and qualitative assessments. Document any images that failed to enhance properly and the reasons for failure. This information supports continuous improvement of the enhancement pipeline.
Version Control
Track versions of enhancement algorithms and parameters. Changes to enhancement procedures can affect downstream analysis results, so version control is essential for reproducibility and for investigating unexpected results.
Common Failure Patterns in Image Enhancement
Over-Enhancement and Noise Amplification
Histogram equalization and other global contrast enhancement methods can amplify noise in homogeneous regions, producing images that appear grainy or unnatural. This is particularly problematic in CT images where noise characteristics vary across tissue types. CLAHE mitigates this by limiting contrast amplification, but improper parameter selection can still produce artifacts.
Color Distortion in Stain Normalization
Stain normalization methods can introduce color distortions when the reference image is not representative of the target image distribution. If the reference image has different staining characteristics than the target images, normalization may produce unnatural colors that obscure diagnostically relevant features. Selecting appropriate reference images is critical for successful stain normalization.
Batch Effects in Deep Learning Pipelines
Deep learning models trained on images from one institution may perform poorly on images from another institution due to differences in acquisition and staining protocols. Stain normalization can reduce these batch effects, but normalization methods themselves may not generalize across all conditions. The multicenter dataset study demonstrated that inter-laboratory staining variation could guide strategies to improve model generalizability through varied training data [15].
Computational Cost
Deep learning-based normalization methods can be computationally expensive, particularly for large datasets or real-time applications. The computational cost of diffusion-based normalization methods was addressed by replacing the default scheduler with DPM-Solver++, which achieved substantial speedups while maintaining or improving quality [14]. For clinical workflows with time constraints, computational efficiency is an important consideration.
Loss of Diagnostic Information
Enhancement methods that aggressively transform image appearance may obscure subtle diagnostic features. For example, excessive contrast enhancement can saturate bright regions or darken subtle structures. Validation against known diagnostic findings is essential to confirm that enhancement does not compromise diagnostic utility.
Limitations of Image Enhancement
Enhancement Does Not Add Information
Image enhancement techniques remap existing pixel intensities but cannot create information that was not captured during acquisition. If the original image lacks diagnostic information due to poor acquisition, motion artifacts, or inadequate contrast administration, enhancement cannot recover this information. Enhancement should be viewed as a display and standardization tool, not a substitute for proper acquisition.
Method Selection Depends on Context
No single enhancement method is optimal for all medical imaging applications. The choice of method depends on the modality, the diagnostic task, the characteristics of the image data, and the downstream analysis requirements. Methods that perform well for one application may perform poorly for another.
Evaluation Challenges
Quantitative metrics do not always correlate with diagnostic utility. An image that scores well on contrast metrics may not be more diagnostically useful than the original image. Qualitative assessment by domain experts is essential but introduces subjectivity. The Stain Normalization Quality Score was proposed to jointly quantify structural preservation and stain fidelity, addressing limitations of generic image metrics [14].
Generalization Limitations
Enhancement methods trained on specific datasets may not generalize to images from different institutions, scanners, or patient populations. External validation is essential to assess generalization performance. The oral squamous cell carcinoma study demonstrated stable performance on external validation with an independent retrospective clinical cohort [19].
Safety and Regulatory Context
Image enhancement is a preprocessing step that does not directly affect patient care. However, enhanced images are used for diagnostic interpretation and automated analysis, so the quality and reliability of enhancement methods have indirect implications for patient safety. The following considerations are relevant.
Diagnostic Accuracy
Enhancement methods should not compromise diagnostic accuracy. Validation against established diagnostic findings is essential to confirm that enhancement improves or maintains diagnostic utility. For automated analysis, enhancement should improve downstream model performance instead of merely changing image appearance.
Data Sharing and Privacy
Medical images contain sensitive patient information. Data sharing for research and algorithm development must comply with applicable policies and regulations. The NIH Genomic Data Sharing Policy provides a framework for data sharing that balances the benefits of data sharing with the need to protect participant privacy [3]. While this policy specifically addresses genomic data, the principles of responsible data sharing apply to medical imaging data as well.
Reproducibility
Reproducibility is essential for research and clinical applications. The FAIR Guiding Principles provide a framework for making data findable, accessible, interoperable, and reusable [4]. Applying these principles to medical image enhancement pipelines supports reproducibility and enables validation by independent researchers.
Professional Oversight
Image enhancement is a technical process that supports but does not replace clinical interpretation. Diagnostic decisions should be made by licensed practitioners who consider the full clinical context. Enhancement methods should be validated and documented to support clinical decision-making.
Professional Escalation Criteria
Researchers and analysts should escalate concerns to appropriate professionals in the following situations.
Unexpected Enhancement Results
If enhancement produces images that obscure diagnostically relevant structures or introduces artifacts that could affect interpretation, the enhancement pipeline should be reviewed and adjusted. If the problem persists, escalate to a domain expert who can assess whether the enhancement approach is appropriate for the specific application.
Model Performance Degradation
If automated analysis models perform worse on enhanced images than on original images, the enhancement pipeline may be introducing artifacts or removing diagnostically relevant information. Review the enhancement parameters and consider alternative methods. Escalate to the model development team if the issue cannot be resolved.
Cross-Institution Generalization Failures
If enhancement methods that perform well on training data fail to generalize to images from other institutions, the normalization approach may be overfitted to the training distribution. Consider using more robust normalization methods or training on more diverse data. Escalate to the research team responsible for algorithm development.
Clinical Interpretation Concerns
If enhanced images raise concerns about diagnostic accuracy or patient safety, escalate to the responsible clinician or radiologist. Enhancement should support clinical interpretation, not complicate it.
Frequently Asked Questions
What is the difference between image enhancement and image normalization?
Image enhancement improves the visual quality of an image by increasing contrast, reducing noise, or otherwise making structures more visible. Image normalization standardizes the appearance of images across different acquisition conditions, such as different scanners, staining protocols, or patient populations. Enhancement is often applied to improve visual interpretation, while normalization is often applied to prepare images for automated analysis or to enable comparison across images.
When should I use CLAHE instead of global histogram equalization?
CLAHE operates on local image regions and limits contrast amplification, making it more suitable for images with heterogeneous tissue types or large homogeneous regions. Global histogram equalization can over-enhance noise in homogeneous regions. Use CLAHE when the image contains both low-contrast structures and large areas of similar intensity, such as CT images of the chest or abdomen.
How do I choose a reference image for stain normalization?
The reference image should be representative of the desired staining appearance and should contain the tissue types and structures of interest. For multicenter studies, the reference image should reflect the staining characteristics that are considered standard or optimal. If the reference image is not representative, normalization may produce unnatural colors that obscure diagnostically relevant features.
What is the difference between Reinhard and Macenko stain normalization?
Reinhard normalization transfers color statistics from a reference image to the target image, which is simple and fast but may not fully separate stain components. Macenko normalization estimates stain vectors and normalizes stain concentrations, providing more principled stain separation. Macenko normalization is generally preferred for H&E images when stain separation is important, while Reinhard normalization may be sufficient for applications where simple color standardization is adequate.
Do deep learning-based normalization methods outperform traditional methods?
Deep learning-based methods such as CycleGAN can handle complex appearance variations and may outperform traditional methods in challenging cases. However, they require training data and are computationally intensive. A benchmarking study comparing eight stain normalization methods found that performance depends on the specific application and evaluation criteria [15]. Traditional methods such as Macenko and Reinhard remain competitive for many applications.
How should I evaluate the effectiveness of image enhancement?
Evaluation should include both quantitative metrics and qualitative assessment. Quantitative metrics such as contrast improvement, structural similarity, and downstream task performance provide objective measures. Qualitative assessment by domain experts is essential to confirm that enhancement improves diagnostic utility. For stain normalization, the Stain Normalization Quality Score jointly quantifies structural preservation and stain fidelity [14].
Can image enhancement improve the performance of deep learning models?
Yes, image enhancement and normalization can improve deep learning model performance by reducing batch effects and standardizing input distributions. Studies have demonstrated that stain normalization leads to superior classification performance compared to classifiers trained without image normalization [16]. However, enhancement should be validated for each specific application, as inappropriate enhancement can degrade performance.
What records should I maintain for image enhancement procedures?
Maintain records of image acquisition parameters, enhancement algorithm choices, parameter values, reference images, validation results, and version control information. This documentation supports reproducibility, quality control, and troubleshooting. For clinical applications, documentation is essential for regulatory compliance and professional oversight.
Related Bioinformatics Guides
- ChIP-Seq Bioinformatics Workflows
- Ethical Considerations in Computational Genomics
- Cryo-EM Image Processing and 3D Reconstruction
- Structural Comparison and Alignment Algorithms for Protein 3D Structures
- Deep Learning for Histopathology Image Classification in Veterinary Oncology
References and Further Reading
- EMBL-EBI Training. European Bioinformatics Institute.
- NCBI Data Resources. National Center for Biotechnology Information.
- Genomic Data Sharing Policy. National Institutes of Health.
- The FAIR Guiding Principles. Scientific Data.
- Levodopa and the progression of Parkinson's disease.. The New England journal of medicine, 2004.
- Clinical practice guideline for the diagnosis and management of acute bacterial sinusitis in children aged 1 to 18 years.. Pediatrics, 2013.
- Coronary CT angiography.. Radiology, 2007.
- CT of emphysema.. Radiologic clinics of North America, 2002.
- Target engagement in lead generation.. Bioorganic & medicinal chemistry letters, 2015.
- Medical image registration with partial data.. Medical image analysis, 2006.
- Image-driven pharmacokinetics: nanomedicine concentration across space and time.. Nanomedicine (London, England), 2015.
- Developments and applications of mass microscopy.. Medical molecular morphology, 2010.
- Continual Learning for Histopathology Image Classification in Class-Incremental Learning.. 2026.
- StainSolver: Accelerating Diffusion-Controlled Neural Style Transfer with DPM-Solver++ and Quality-Driven Stain Normalization. 2026.
- Staining normalization in histopathology: Method benchmarking using multicenter dataset.. 2026.
- GHMS-CycleGAN: Graph-Based Hierarchical Multi-stain CycleGAN for Stain Normalization and Classification in Digital Pathology.. 2026.
- Quadra Sense: A Fusion of Deep Learning Classifiers for Mitosis Detection in Breast Cancer Histopathology.. 2026.
- 3SGAN: Semi-Supervised and Multi-Task GAN for Stain Normalization and Nuclei Segmentation of Histopathological Images. 2026.
- A histopathology image-based computer-aided classification study for oral squamous cell carcinoma.. 2026.
- Magnification-independent breast cancer diagnosis using a GWO-enhanced vision transformer with multi-stage stain normalization.. 2026.
- Attention-Based Dual-Path Deep Learning for Blood Cell Image Classification Using ConvNeXt and Swin Transformer. Journal of Imaging Informatics in Medicine, 2025.
- Tuberculosis Detection Using ResNet50: A Deep Learning Approach for Medical Image Classification. 2024 Eighth International Conference on Parallel, Distributed and Grid Computing (PDGC), 2024.
- A systematic review of machine and deep learning techniques for the identification and classification of breast cancer through medical image modalities. Multimedia tools and applications, 2023.
- Cardiovascular Disease Prediction Through Retinal Image Analysis using Deep Learning. 2025 3rd International Conference on Self Sustainable Artificial Intelligence Systems (ICSSAS), 2025.
- Multi-modal deep learning methods for classification of chest diseases using different medical imaging and cough sounds. PLoS ONE, 2024.
- Optimizing CT Image Quality through AI-based Reconstruction and Deep Learning Models for Enhanced Diagnostic Accuracy. 2025 4th International Conference on Distributed Computing and Electrical Circuits and Electronics (ICDCECE), 2025.
- Medical Diagnosis Using Hybrid of Machine Learning and Deep Learning Techniques. International Journal of Advanced Computer Science and Applications, 2025.
- Optimizing Blood Clot Detection Using Deep Learning: Effects of Preprocessing Pipelines and Image Slicing Methods. IEEE International Conference on Circuits and Systems for Communications, 2025.
- Comparison of Contrast Enhancement Techniques for Medical Image. Icedss 2016 IEEE Conference on Emerging Devices and Smart Systems Proceedings, 2016.
- Review: Medical image contrast enhancement techniques. Research Journal of Pharmaceutical Biological and Chemical Sciences, 2015.
- Tri-modal technique for medical images enhancement. International Journal of Advances in Applied Sciences, 2022.
- Assessment of histogram-based medical image contrast enhancement techniques: An implementation. 2019 IEEE 9th Annual Computing and Communication Workshop and Conference Ccwc 2019, 2019.
- Medical image enhancement technique using multiresolution gabor wavelet transform. Lecture Notes in Networks and Systems, 2021.
This article is educational and does not replace validated analysis plans, institutional policy, clinical interpretation, or specialist review.