High Frequency Boost Filtering

High-Frequency Boost Filtering to enhance the appearance of microcalcification in X-ray Mammography Images for Diagnosis of Breast Cancer.
209.0 次下载
更新时间 2021/11/21

查看许可证

In image processing, it is often desirable to emphasize high frequency components representing the image details without eliminating low frequency components. The high boost filter can be used to enhance the high frequency components. We can sharpen edges of a image through the amplification and obtain a more clear image. The high boost filter is simply the sharpening operator in image processing. High boost filter is a popular method that allows sharpening in high detail areas but little or no sharpening in flat or smooth areas. A high boost filter is used to retain some of the low-frequency components to and in the interpretation of a image. In high boost filtering the input image f(m,n) is multiplied by an amplification factor A before subtracting the low pass image are discuss as follows.
High boost filter = A × f(m,n) - low pass filter
Adding and subtracting 1 with the amplification factor
High boost filter = (A−1) × f(m,n) + f(m,n) - low pass filter
But f(m,n) - low pass filter = high pass filter
High boost filter = (A−1) × f(m,n) + high pass filter
High boost filter = A × f(m,n) - low pass filter
Implementation of the technique for color images and grayscale images is outright.
h_size = input('Enter the Size of filter : ');
Sigma = input('Enter the value of Sigma : ');
A = input('Enter the value A : ');
High_Boost_Filt(h_size,Sigma,A);

引用格式

Ankur Kumar Jaiswal (2024). High Frequency Boost Filtering (https://www.mathworks.com/matlabcentral/fileexchange/102384-high-frequency-boost-filtering), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2021b
兼容任何版本
平台兼容性
Windows macOS Linux

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

High_Boost_Filter/Function

High_Boost_Filter/Function

版本 已发布 发行说明
9.10.01754

changed the size of the image and example image

9.10.01753

Changed the uploaded file

9.10.0