图像的均值滤波与中值滤波处理(Matlab)

文章首发及后续更新:https://mwhls.top/2267.html
新的更新内容请到mwhls.top查看。
无图/无目录/格式错误/更多相关请到上方的文章首发页面查看。

目的
  • 使用均值滤波与中值滤波对图像进行处理
思路
  • 用矩阵表示均值滤波计算公式。
  • 遍历图像,以每个像素点为中心的3*3矩阵为待处理数据,
  • 均值滤波:将算子矩阵与待处理矩阵点乘,求和结果矩阵,以其作为矩阵中心点的新值。
  • 中值滤波:将待处理矩阵排序,取中值为矩阵中心点新值。
实验结果
  • 从左到右,分别为:原图、均值滤波、中值滤波
  • 注:这是放大后的图像,全图太小,不明显。
代码

clear;
ima = imread('4.jpg');
grayIma = rgb2gray(ima);
[height, width] = size(grayIma);
filter8 = [0.125 0.125 0.125; 0.125 0 0.125; 0.125 0.125 0.125];

imaFilter8 = grayIma;
imaFilterMid = grayIma;
for row = 2:height-1
    for col = 2:width-1
        temp = double(grayIma(row-1:row+1, col-1:col+1));
        %均值滤波
        template = sum(sum(filter8 .* temp));
        imaFilter8(row, col) = template;
        %中值滤波
        template2 = sort(temp(:));
        imaFilterMid(row, col) = template2(5);
    end
end
subplot(1,3,1);
imshow(grayIma);
subplot(1,3,2);
imshow(imaFilter8);
subplot(1,3,3);
imshow(imaFilterMid);
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值