Classification of Renal Lesions by Leveraging Hybrid Features from CT Images Using Machine Learning Techniques

J Imaging Inform Med 2026 AI 6 Explanations View Original
Original Paper (PDF)

Unable to display PDF. Download it here or view on PMC.

Plain-English Explanations
Pages 1-2
The Challenge of Reading Kidney CT Scans Accurately

Kidney cancer is one of the most common cancers worldwide, with more than 81,000 new cases expected in 2024 according to the American Cancer Society. Like many cancers, early detection is critical, and computed tomography (CT) scanning is the standard imaging tool used to evaluate kidney lesions. CT scans produce high-resolution images that can reveal abnormalities in soft tissue, making them invaluable for diagnosis.

Despite their usefulness, CT images of kidney lesions present a difficult problem for human interpretation. Benign (non-cancerous) and malignant (cancerous) lesions can look strikingly similar to the naked eye, and even trained radiologists face disagreement when evaluating borderline cases. Studies show that visual assessment by radiologists achieves about 79% accuracy, leaving a meaningful number of cases misclassified, with consequences ranging from unnecessary chemotherapy to missed cancer progression.

This study set out to build an automated computer-aided diagnosis (CAD) system that extracts hidden texture information from CT images to reliably classify kidney lesions as benign or malignant. Computerized texture analysis can quantify image patterns that the human eye cannot consistently detect, offering a potential second opinion that improves diagnostic confidence and consistency.

TL;DR: Kidney lesions look visually similar on CT scans, and even experienced radiologists only achieve about 79% accuracy, creating an urgent need for automated computer-aided tools.
Pages 3-9
Eight Texture Models and 44 Features Extracted from CT Images

The core of the study was texture feature extraction, the process of converting a CT image into a set of numbers that describe its visual patterns. The researchers applied eight separate texture models to each image: SGLCM (Spatial Gray Level Co-occurrence Matrix), GLDS (Gray Level Difference Statistics), FoS (First-order Statistics), TEM (Law's Texture Energy Measures), FPS (Fourier Power Spectrum), SFM (Statistical Feature Matrix), Fractal features, and NGTDM (Neighborhood Gray Tone Difference Matrix). Each model captures a different aspect of how pixels vary within the tissue.

For each CT scan, a fixed-size Region of Interest (ROI) was selected from the center of the lesion. This standardized approach ensures that the analysis focuses on the tumor itself rather than surrounding tissue. From all eight models combined, a total of 44 texture features were extracted. These features describe properties such as how homogeneous or random the pixel patterns are, how coarse or fine the texture is, how the tissue reflects different frequencies of light, and how irregular the tissue boundary appears.

The dataset came from 50 patients scanned at a hospital in Chandigarh, India, using a 128-slice SIEMENS CT scanner. Scans included multiple imaging phases: arterial, venous, portal venous, and delayed. This multi-phase approach captures how tissue responds over time to contrast agents, which helps distinguish benign from malignant tissue. The 50-subject dataset was evaluated using 5-fold cross-validation, where the model was trained on four-fifths of the data and tested on the remaining fifth, repeated five times to ensure reliability.

TL;DR: The research team applied eight different texture analysis methods to CT scan regions of interest, extracting a total of 44 features that mathematically describe how pixels are arranged in tissue images.
Pages 11-12
Narrowing 44 Features Down to 10 Using Three Selection Methods

Not all 44 features carry equal diagnostic value, and including redundant features can actually harm classifier performance. To identify the most informative subset, the researchers applied three separate feature selection techniques: Correlation-Based Feature Selection (CFS), which looks for features that strongly predict the class label while being minimally redundant with each other; Information Gain (IG), which measures how much each feature reduces uncertainty about the class; and Gain Ratio (GR), which is a refined version of information gain that corrects for a bias toward features with many distinct values.

All three methods independently ranked the same 10 features as the most informative: median, sum entropy, strength, Hurst coefficient, entropy, angular sum, radial sum, kurtosis, skewness, and coarseness. This remarkable agreement across three independent techniques gives strong confidence that these features genuinely capture the most diagnostically relevant texture differences between benign and malignant kidney tissue.

The two top-ranked features, median and sum entropy, reflect the central intensity tendencies and the degree of randomness within the lesion texture, respectively. Malignant lesions tend to show more complex, irregular, and heterogeneous patterns compared to benign lesions, which explains why these measures of texture disorder were so consistently predictive. The Hurst coefficient, derived from fractal analysis, captures surface roughness at multiple spatial scales, which is another hallmark of malignant tissue irregularity.

TL;DR: Three independent feature selection methods were applied to identify the 10 most informative texture features, reducing computational cost while improving classification accuracy.
Pages 16-20
Random Forest Achieves 95.8% Accuracy with the 10-Feature Set

Five machine learning classifiers were tested: Random Forest (RF), K-Nearest Neighbors (K-NN), Neural Network (NN), Support Vector Machine (SVM), and Naive Bayes. Using all 44 features, Random Forest already outperformed the others with 90.7% accuracy and an AUC of 0.889. However, when the feature set was reduced to just the top 10 selected features, all classifiers improved, and Random Forest reached 95.8% accuracy with an AUC of 0.951.

The full performance comparison with 10 features shows Random Forest leading clearly: sensitivity of 94.44%, specificity of 93.4%, and an F-score of 0.944. K-NN came second with 92.1% accuracy and AUC of 0.917. SVM achieved 88.4% accuracy and Naive Bayes 90.7%. The neural network, despite showing high sensitivity (91.44%) and specificity (92.4%), produced a lower AUC of 0.851, possibly due to inconsistent performance across decision thresholds. The confusion matrix for Random Forest confirmed 1,181 true positives and 1,168 true negatives out of a 2,500-sample evaluation set.

This study outperformed prior approaches: earlier radiologist visual assessment achieved only 79% accuracy, and the most advanced prior machine learning study reached 90.5%. The proposed system's 95.8% accuracy represents a meaningful improvement. Importantly, the selection of 10 features not only improved accuracy but also reduced computational cost, making the system faster and more practical for potential deployment in a clinical setting.

TL;DR: Reducing from 44 to 10 features improved Random Forest performance from 90.7% to 95.8% accuracy and raised its AUC from 0.889 to 0.951, outperforming all four competing classifiers.
Page 17
Why Texture Analysis Works: Benign and Malignant Tissue Differ in Patterns

The SGLCM model performed particularly well among individual models because it evaluates how pixel intensity values co-occur at specific spatial distances and directions, capturing the tonal variations that distinguish malignant from benign tissue. The FPS model added complementary value by analyzing texture in the frequency domain, detecting directionality and coarseness patterns that spatial models cannot capture directly. The fractal model contributed information about how the irregular boundary of malignant tissue scales across multiple resolutions.

Comparing individual models versus the combined 44-feature vector showed that combining all models meaningfully outperformed any single model alone. However, this also increased dimensionality and slowed computation. The feature selection step solved this trade-off by retaining only the complementary features that added unique information, achieving better performance with fewer features than any single model or the full 44-feature set.

From a clinical perspective, the result makes intuitive sense. Malignant lesions tend to have more disorganized cell structures, uneven growth patterns, and irregular edges, all of which manifest as higher texture entropy, greater pixel intensity variation, and rougher fractal profiles in CT images. These physical differences are exactly what the selected texture features are designed to measure, confirming that the computational approach is grounded in the underlying biology of cancer.

TL;DR: Malignant kidney lesions show coarser, more irregular texture than benign lesions, and different texture models capture different aspects of this difference, which is why combining multiple models outperforms any single one.
Pages 21-23
A Faster, More Accurate Second Opinion for Kidney Lesion Diagnosis

This study demonstrated that a carefully designed hybrid texture feature approach can substantially improve the automated classification of kidney lesions from CT images. The combination of eight texture models, three independent feature selection methods pointing to the same 10-feature subset, and a Random Forest classifier produced a system that achieves 95.8% accuracy on a clinical CT dataset, exceeding all previously reported methods for this task.

From a practical standpoint, the system was built and tested on real clinical CT data from a hospital setting, using standard imaging equipment. The proposed approach could function as a clinical decision support tool, offering physicians a quantitative second opinion when evaluating ambiguous kidney lesions. This could reduce unnecessary biopsies or surgeries for benign cases, while ensuring that malignant lesions are flagged for prompt treatment.

Future work should focus on expanding the dataset beyond 50 patients to improve the statistical confidence of the results and test the system on more diverse patient populations. Incorporating additional clinical variables such as patient age and contrast enhancement patterns could further improve accuracy. The framework of combining multiple texture models with consensus feature selection could also be extended to other cancer types where CT-based texture analysis may offer diagnostic value.

TL;DR: By combining eight texture models with smart feature selection and Random Forest classification, this system offers a practical automated tool that could help physicians diagnose kidney lesions more accurately and consistently.
Citation: Open Access, 2026. Available at: PMC13103035.