what is the difference between high pass and high boost filter
27 次查看(过去 30 天)
显示 更早的评论
Hi,
Can anybody tell me what is the difference between high pass and high boost filter?
Thanks in advance
0 个评论
回答(2 个)
Wayne King
2012-5-15
Hi Jim, normally what I have seen referred to as a high boost filter is when you take an image and possibly amplify it, then subtract from the amplified image a blurred (lowpass filtered) version of the image.
It is an image sharpening technique.
High pass filtering is when you simply apply a highpass filter to your image. A filter like this one for example:
b = [
0.2333 -0.4040 0.1083 0.0625
-0.4040 0.6998 -0.1875 -0.1083
0.1083 -0.1875 0.0502 0.0290
0.0625 -0.1083 0.0290 0.0167];
freqz(b)
Sritej gunta
2013-3-29
the high boost filter amplifies the high frequency components and it keeps the low frequency components intact(almost).
it also enhances the edges and removes the blurred parts
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Filtering and Enhancement 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!