博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PS 滤镜— — sparkle 效果
阅读量:5234 次
发布时间:2019-06-14

本文共 1446 字,大约阅读时间需要 4 分钟。

clc;    clear all;    close all;    addpath('E:\PhotoShop Algortihm\Image Processing\PS Algorithm');    I=imread('4.jpg');    Image=double(I)/255;    [height, width, depth]=size(Image);    rays = 25;    radius = 25;       amount = 25;     % 1-100    color = [1.0, 1.0, 1.0];   % 0-1    randomness = 25;    centreX=width/2.0;    centreY=height/2.0;    % % seed = 371;    rayLengths=radius+randomness / 100.0 * radius * rand(1,rays);    Img_new=Image;    for ii=1:height        for jj=1:width            dx = jj-centreX;            dy = ii-centreY;            distance=sqrt(dx*dx+dy*dy);            angle = atan2(dy, dx);            d = (angle+pi) / (2*pi) * rays;            f=d-floor(d);            len_1=rayLengths(mod(floor(d), rays)+1);            len_2=rayLengths(mod(floor(d)+1, rays)+1);            length = lerp(f, len_1,  len_2);            g = length*length / (distance+0.0001);            g = g.^((100-amount) / 50.0);            f =f - 0.5;    % %         f = 1-f*f;            f =f * cos(g);    % %         f =f * sin(g);            f=min(max(0,f),1);            r=Image(ii, jj, 1);            g=Image(ii, jj, 2);            b=Image(ii, jj, 3);            Img_new(ii, jj, 1)=lerp(f, r, color(1));            Img_new(ii, jj, 2)=lerp(f, g, color(2));            Img_new(ii, jj, 3)=lerp(f, b, color(3));        end    end    imshow(Img_new);    imwrite(Img_new, 'out.jpg');

参考来源:

原图:

这里写图片描述

效果图:

这里写图片描述

这里写图片描述

转载于:https://www.cnblogs.com/mtcnn/p/9412562.html

你可能感兴趣的文章
Leetcode 226: Invert Binary Tree
查看>>
http站点转https站点教程
查看>>
解决miner.start() 返回null
查看>>
bzoj 2007: [Noi2010]海拔【最小割+dijskstra】
查看>>
BZOJ 1001--[BeiJing2006]狼抓兔子(最短路&对偶图)
查看>>
C# Dynamic通用反序列化Json类型并遍历属性比较
查看>>
128 Longest Consecutive Sequence 一个无序整数数组中找到最长连续序列
查看>>
定制jackson的自定义序列化(null值的处理)
查看>>
auth模块
查看>>
javascript keycode大全
查看>>
前台freemark获取后台的值
查看>>
log4j.properties的作用
查看>>
游戏偶感
查看>>
Leetcode: Unique Binary Search Trees II
查看>>
C++ FFLIB 之FFDB: 使用 Mysql&Sqlite 实现CRUD
查看>>
Spring-hibernate整合
查看>>
c++ map
查看>>
exit和return的区别
查看>>
discuz 常用脚本格式化数据
查看>>
洛谷P2777
查看>>