当前位置:网站首页>canvas Gaussian blur effect
canvas Gaussian blur effect
2022-08-05 00:21:00 【The most brutal baby seals】
// imgData:canvas 的 getImageData 方法返回值
// radius:模糊的半径
function gaussBlur(imgData, radius) {
radius *= 3; //不知为什么,My blur radius is css中 filter:bulr The effect is the same when the value is tripled.
//Copy图片内容
let pixes = new Uint8ClampedArray(imgData.data);
const width = imgData.width;
const height = imgData.height;
let gaussMatrix = [],
gaussSum,
x, y,
r, g, b, a,
i, j, k,
w;
radius = Math.floor(radius);
const sigma = radius / 3;
a = 1 / (Math.sqrt(2 * Math.PI) * sigma);
b = -1 / (2 * sigma * sigma);
//生成高斯矩阵
for (i = -radius; i <= radius; i++) {
gaussMatrix.push(a * Math.exp(b * i * i));
}
//x 方向一维高斯运算
for (y = 0; y < height; y++) {
for (x = 0; x < width; x++) {
r = g = b = a = gaussSum = 0;
for (j = -radius; j <= radius; j++) {
k = x + j;
if (k >= 0 && k < width) {
i = (y * width + k) * 4;
w = gaussMatrix[j + radius];
r += pixes[i] * w;
g += pixes[i + 1] * w;
b += pixes[i + 2] * w;
a += pixes[i + 3] * w;
gaussSum += w;
}
}
i = (y * width + x) * 4;
//计算加权均值
imgData.data.set([r, g, b, a].map(v => v / gaussSum), i);
}
}
pixes.set(imgData.data);
//y 方向一维高斯运算
for (x = 0; x < width; x++) {
for (y = 0; y < height; y++) {
r = g = b = a = gaussSum = 0;
for (j = -radius; j <= radius; j++) {
k = y + j;
if (k >= 0 && k < height) {
i = (k * width + x) * 4;
w = gaussMatrix[j + radius];
r += pixes[i] * w;
g += pixes[i + 1] * w;
b += pixes[i + 2] * w;
a += pixes[i + 3] * w;
gaussSum += w;
}
}
i = (y * width + x) * 4;
imgData.data.set([r, g, b, a].map(v => v / gaussSum), i);
}
}
return imgData;
};
详细内容请看下文:
本文转载:https://blog.csdn.net/xuanhun521/article/details/109362541
边栏推荐
- 2022 Niu Ke Summer Multi-School Training Camp 5 (BCDFGHK)
- node使用redis
- 克服项目管理中恐惧心理
- 00、数组及字符串常用的 API(详细剖析)
- [230] Execute command error after connecting to Redis MISCONF Redis is configured to save RDB snapshots
- Three tips for you to successfully get started with 3D modeling
- The applicable scenarios and common product types of the KT148A electronic voice chip ic solution
- IDEA file encoding modification
- leetcode: 269. The Martian Dictionary
- 软件测试面试题:做好测试计划的关键是什么?
猜你喜欢
随机推荐
性能测试如何准备测试数据
KT148A voice chip ic working principle and internal architecture description of the chip
Redis visual management software Redis Desktop Manager2022
软件质量评估的通用模型
[LeetCode] Summary of Matrix Simulation Related Topics
RK3399平台开发系列讲解(内核调试篇)2.50、嵌入式产品启动速度优化
【LeetCode】双指针题解汇总
2022牛客多校训练第二场 J题 Link with Arithmetic Progression
【云原生--Kubernetes】调度约束
tiup update
[Cloud Native--Kubernetes] Pod Controller
《MySQL入门很轻松》第2章:MySQL管理工具介绍
软件开发工具的技术要素
MAUI Blazor 权限经验分享 (定位,使用相机)
QSunSync 七牛云文件同步工具,批量上传
"No title"
怎样进行在不改变主线程执行的时候,进行日志的记录
英特尔WiFi 7产品将于2024年亮相 最高速度可达5.8Gbps
软件测试面试题:什么是软件测试?软件测试的目的与原则?
tensor.nozero(), mask, [mask]








