码迷,mamicode.com
首页 > 其他好文 > 详细

PS 滤镜——运动模糊

时间:2014-10-08 16:02:05      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:photoshop   算法   应用   

%%%%%  motion blur
clc;
clear all;
close all;
Image=imread(‘4.jpg‘);
Image=double(Image);
theta=pi/4;
len=20;
row=floor(len*sin(theta))+1;
col=floor(len*cos(theta))+1;
motion_f1(1:row,1:col)=0;
K=tan(theta);
center_x=col/2;
center_y=row/2;

for i=1:row
    for j=1:col
        x=j-center_x;
        y=center_y-i;
        Dis=abs(K*x-y)/sqrt(K*K+1);
        motion_f1(i,j)=max(1-Dis,0);
    end
end

motion_f1=motion_f1/sum(motion_f1(:));
Image1=imfilter(Image,motion_f1,‘replicate‘,‘conv‘);
imshow(Image1/255);

motion_filter=fspecial(‘motion‘,20,0);
Image2=imfilter(Image,motion_filter,‘replicate‘,‘conv‘);
figure,

imshow(Image2/255);


原图 

bubuko.com,布布扣

效果图 

bubuko.com,布布扣

效果图 

bubuko.com,布布扣

PS 滤镜——运动模糊

标签:photoshop   算法   应用   

原文地址:http://blog.csdn.net/matrix_space/article/details/39211395

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!