1.用matlab怎样产生运动模糊图像,运动图像包括匀速直线运动,匀加
[I1,map]=imread('fenj-mf.jpg'); %读入运动模糊图像
figure(1);
imshow(I1);
len=30;
theta=45;
initpsf=fspecial('motion',len,theta); %建立复原点扩散函数
[J,P]=deconvblind(I1,initpsf,30); %去卷积
figure(2);
imshow(J); %显示结果图像如图4-7c(所示)
figure(3);
imshow(P,[],'notruesize');