用MATLAB作简单的运动模糊

clear all I=imread('cameraman.tif'); subplot(121);imshow(I); xlabel('(a)原始图像');%x轴标签 len=35;%设置运动位移为35个像素 theta=45;%设置运动角度为45度 psf=fspecial('motion',len,theta);%创建二维运动仿真滤波器psf mf=imfilter(I,psf,'circu
相关文章
相关标签/搜索