<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>computational methods for breast tissue diagnosis &#8211; Science</title>
	<atom:link href="https://scienmag.com/tag/computational-methods-for-breast-tissue-diagnosis/feed/" rel="self" type="application/rss+xml" />
	<link>https://scienmag.com</link>
	<description></description>
	<lastBuildDate>Sat, 12 Sep 2026 14:20:33 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.1</generator>

<image>
	<url>https://scienmag.com/wp-content/uploads/2024/07/cropped-scienmag_ico-32x32.jpg</url>
	<title>computational methods for breast tissue diagnosis &#8211; Science</title>
	<link>https://scienmag.com</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">73899611</site>	<item>
		<title>New AI Pipeline Sorts Breast Tissue Scans Into Benign and Malignant With Striking Accuracy</title>
		<link>https://scienmag.com/new-ai-pipeline-sorts-breast-tissue-scans-into-benign-and-malignant-with-striking-accuracy/</link>
		
		<dc:creator><![CDATA[Blake Davidson]]></dc:creator>
		<pubDate>Sat, 12 Sep 2026 14:20:33 +0000</pubDate>
				<category><![CDATA[Technology and Engineering]]></category>
		<category><![CDATA[advances in digital breast cancer pathology]]></category>
		<category><![CDATA[AI pipeline for breast cancer detection]]></category>
		<category><![CDATA[AI-based histopathology analysis]]></category>
		<category><![CDATA[automated classification of benign and malignant breast tissue]]></category>
		<category><![CDATA[BreakHis dataset]]></category>
		<category><![CDATA[breast cancer]]></category>
		<category><![CDATA[breast cancer screening accuracy]]></category>
		<category><![CDATA[breast tissue histopathology image analysis]]></category>
		<category><![CDATA[CLAHE]]></category>
		<category><![CDATA[computational methods for breast tissue diagnosis]]></category>
		<category><![CDATA[computer-aided diagnosis]]></category>
		<category><![CDATA[deep learning vs handcrafted features in pathology]]></category>
		<category><![CDATA[digital pathology and image segmentation]]></category>
		<category><![CDATA[Gaussian filter]]></category>
		<category><![CDATA[hierarchical computational pipeline for cancer detection]]></category>
		<category><![CDATA[histopathology]]></category>
		<category><![CDATA[histopathology image processing]]></category>
		<category><![CDATA[image segmentation]]></category>
		<category><![CDATA[K-means clustering]]></category>
		<category><![CDATA[Machine learning]]></category>
		<category><![CDATA[machine learning in breast cancer diagnosis]]></category>
		<category><![CDATA[Medical Imaging]]></category>
		<category><![CDATA[SVM+]]></category>
		<category><![CDATA[YCbCr]]></category>
		<guid isPermaLink="false">https://scienmag.com/?p=195343</guid>

					<description><![CDATA[Researchers have developed an interpretable hierarchical pipeline combining Gaussian filtering, YCbCr-based CLAHE enhancement, K-means nuclei segmentation, and SVM classification that sorts breast histopathology images into benign and malignant with nearly 87.5 percent accuracy.]]></description>
										<content:encoded><![CDATA[<p>Breast cancer has overtaken lung cancer as the world&#8217;s most commonly diagnosed malignancy, and it remains one of the leading causes of death among women across the globe. While mammographic screening is widely regarded as the gold standard for early detection, the definitive diagnosis still rests on histopathology: a biopsy sample is stained, typically with Hematoxylin and Eosin, mounted on a slide, and examined under a microscope by a pathologist. This manual examination, though indispensable, is vulnerable to variability between and within observers, and such inconsistencies can lead to misdiagnosis at the very moment when accuracy matters most. A new study published in the journal Discover Informatics tackles this problem head-on, presenting a hierarchical computational pipeline that enhances, segments, and classifies breast histopathology images automatically, distinguishing benign from malignant tissue with an accuracy approaching 87.5 percent on a widely used public benchmark.</p>
<p>The research, led by B. V. Divyashree of the Mysore University School of Engineering together with Shamair Khushba and G. Hemantha Kumar of the University of Mysore, deliberately charts a middle course between two dominant paradigms in digital pathology. On one side stand handcrafted, interpretable feature-based methods; on the other, data-hungry deep learning architectures such as convolutional neural networks, ResNet, DenseNet, and EfficientNet. Deep models have produced impressive results, but they typically demand large annotated datasets, substantial GPU memory, and careful hyperparameter tuning. By contrast, the pipeline proposed by the Mysore team relies on classical image processing and machine learning, offering transparency and computational efficiency that make it attractive for laboratories and clinics where data or hardware are limited.</p>
<p>The pipeline unfolds in three hierarchical stages: preprocessing, nuclei segmentation, and classification. Preprocessing itself begins with enhancement. The authors tested two complementary techniques on the raw images. The first is Gaussian filtering, a noise-reduction method that convolves the image with a kernel whose weights follow a Gaussian distribution, assigning the greatest weight to pixels near the kernel&#8217;s center. Because histopathological micrographs frequently contain Gaussian noise, this filter suppresses high-frequency artifacts while preserving the global intensity variations needed for later segmentation. The second technique, decorrelation stretch, addresses a different problem: in most histopathology images the red, green, and blue color channels are highly correlated and carry overlapping information, muting the color contrast that carries diagnostic meaning. The method rotates and rescales the pixel data into a new space where the channels become less correlated, then applies an inverse transformation back to the original space, producing brighter, more spectrally distinct images.</p>
<p>To decide objectively which enhancement method deserved a place in the pipeline, the researchers evaluated both using two quantitative metrics. Peak Signal-to-Noise Ratio, or PSNR, expresses the relationship between the maximum power of a signal and the power of the corrupting noise, while Root Mean Square Error, or RMSE, quantifies the pixel-wise difference between the enhanced image and the original reference. Higher PSNR and lower RMSE indicate better quality. Across images captured at magnifications of 40X, 100X, 200X, and 400X, and for both benign and malignant samples, the Gaussian filter delivered the highest PSNR and the lowest RMSE. Although decorrelation stretch produced visually stronger color separation, it could not match the Gaussian filter&#8217;s fidelity, so Gaussian-filtered images were carried forward into the segmentation stage.</p>
<p>The next challenge was isolating cell nuclei, the structures whose shape, size, and texture betray whether tissue is healthy or cancerous. In normal tissue, nuclei tend to be round and uniform; in malignant tissue they appear irregular and vary widely in size. Poor segmentation that bleeds in surrounding cytoplasm or stroma, or that merges overlapping nuclei, can distort these cues and doom the classifier downstream. The authors&#8217; approach begins by converting the enhanced RGB image into the YCbCr color space, which decouples luminance, the Y channel representing brightness, from chrominance, the Cb and Cr channels encoding blue-difference and red-difference respectively. This separation makes segmentation robust to the staining variations and lighting inconsistencies that plague routine slides. Contrast Limited Adaptive Histogram Equalization, or CLAHE, is then applied only to the Y component. Unlike conventional histogram equalization, CLAHE operates on small local tiles and applies a contrast-limiting function, sharpening local detail without amplifying noise or over-enhancing the image, while the untouched chrominance channels preserve color fidelity.</p>
<p>With contrast enhanced, the pipeline applies K-means clustering to partition each pixel into one of three clusters, a value chosen empirically. The algorithm iteratively assigns pixels to the nearest cluster centroid and recomputes centroids until convergence, effectively dividing the image into background, normal tissue, and suspicious regions. One cluster corresponds to the nuclei, which are thereby separated from stroma, cytoplasm, and other cellular components. The authors report that the segmentation shows consistent uniformity and strong correlation with the underlying tissue structures, though regions where nuclei overlap remain a recognized challenge. Notably, because the BreakHis dataset used for validation provides ground-truth labels only for classification and not for segmentation, the segmentation module was assessed qualitatively rather than against annotated masks.</p>
<p>From the segmented nuclei, the team extracted a rich set of handcrafted features spanning three families. Texture features were computed from the Gray-Level Co-Occurrence Matrix, or GLCM, using two matrices that capture horizontal and vertical pixel relationships; these yield quantitative descriptors such as homogeneity, energy, correlation, contrast, and entropy that summarize the spatial arrangement of cells within tissue structures. Geometric features, including area, diameter, radius, perimeter, eccentricity, elongation, and solidity, characterize the shape variability that distinguishes cancerous nuclei from their benign counterparts. Finally, color features were drawn from the Cb and Cr components of the enhanced YCbCr images. The authors emphasize that these interpretable, handcrafted features were chosen deliberately over learned representations because they explicitly characterize tissue properties, enhance clinical explainability, and remain effective in limited-data scenarios where deep networks would struggle.</p>
<p>Classification was performed with two of machine learning&#8217;s most dependable workhorses: Support Vector Machine and K-Nearest Neighbor. The SVM, equipped with a radial basis function kernel selected empirically for its ability to capture non-linear relationships in the feature space, achieved the stronger results, reaching approximately 87.5 percent accuracy on the BreakHis dataset and outperforming both the K-NN baseline and many prior methods in the literature. For K-NN, the number of neighbors was varied from 1 to 15, with optimal performance at k equal to 5 using Euclidean distance, a setting that balances the low bias but high variance of small k against the increased bias of large k. Critically, the researchers adopted a patient-level split strategy: because BreakHis contains multiple images at different magnifications from the same patient, all images from a single patient were assigned exclusively to either the training or testing set, in an 80:20 ratio, preventing data leakage that can inflate reported accuracy. Performance was assessed with accuracy, sensitivity, specificity, precision, recall, and F-score.</p>
<p>The implications reach beyond a single benchmark score. In head-to-head comparison with representative prior work on BreakHis, the proposed pipeline achieved the highest reported accuracy while offering improved interpretability, lower computational complexity, and suitability for small-scale datasets without extensive GPU resources. An ablation study varying filtering techniques, color spaces, and clustering parameters confirmed that the integration of Gaussian enhancement, YCbCr conversion with CLAHE, and three-cluster K-means segmentation justifies each design choice. The authors acknowledge the approach&#8217;s limits: handcrafted features may miss highly complex patterns, and some nuclei remain over-segmented, leaving room for error reduction. Future work will integrate deep learning-based feature extraction for end-to-end learning and test robustness on additional datasets. For now, the study offers a compelling demonstration that careful, interpretable engineering, rather than sheer model size, can push computer-aided diagnosis of breast cancer meaningfully forward, with the potential to speed up pathology workflows and reduce diagnostic variability where it matters most.</p>
<p><strong>Subject of Research:</strong> Machine learning classification of breast histopathology images into benign and malignant using a hierarchical preprocessing and segmentation pipeline</p>
<p><strong>Article Title:</strong> A hierarchical pipeline for preprocessing and classification of breast histopathology images into benign and malignant</p>
<p><strong>Article References:</strong> Divyashree, B. V., Khushba, S., &amp; Kumar, G. H. (2026). A hierarchical pipeline for preprocessing and classification of breast histopathology images into benign and malignant. <em>Discover Informatics, 1</em>(1), Article 11. <a href="https://doi.org/10.1007/s44564-026-00013-2" rel="noopener noreferrer">https://doi.org/10.1007/s44564-026-00013-2</a></p>
<p><strong>Image Credits:</strong> AI Generated</p>
<p><strong>DOI:</strong> <a href="https://doi.org/10.1007/s44564-026-00013-2" rel="noopener noreferrer">10.1007/s44564-026-00013-2</a></p>
<p><strong>Keywords:</strong> breast cancer, histopathology, machine learning, SVM, K-means clustering, image segmentation, CLAHE, YCbCr, Gaussian filter, BreakHis dataset, computer-aided diagnosis, medical imaging</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">195343</post-id>	</item>
	</channel>
</rss>
