当前位置:网站首页>canvas 高斯模糊效果
canvas 高斯模糊效果
2022-08-05 00:15:00 【最凶残的小海豹】
// imgData:canvas 的 getImageData 方法返回值
// radius:模糊的半径
function gaussBlur(imgData, radius) {
radius *= 3; //不知为什么,我的模糊半径是 css中 filter:bulr 值的三倍时效果才一致。
//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
边栏推荐
猜你喜欢
Develop a SpaceX website based on the Appian low-code platform
SQL关联表更新
建模师经验分享:模型学习方法
4 - "PyTorch Deep Learning Practice" - Backpropagation
Cloud native - Kubernetes 】 【 scheduling constraints
MongoDB permission verification is turned on and mongoose database configuration
could not build server_names_hash, you should increase server_names_hash_bucket_size: 32
【LeetCode】图解 904. 水果成篮
性能测试如何准备测试数据
How to automatically push my new articles to my fans (very simple, can't learn to hit me)
随机推荐
线程三连鞭之“线程的状态”
After another 3 days, I have sorted out 90 NumPy examples, and I can't help but bookmark it!
对写作的一些感悟
Develop a SpaceX website based on the Appian low-code platform
Ab3d.PowerToys and Ab3d.DXEngine Crack
uinty lua 关于异步函数的终极思想
.net(C#)获取两个日期间隔的年月日
Xiaohei leetcode surfing: 94. Inorder traversal of binary tree
Modelers experience sharing: model study method
建模师经验分享:模型学习方法
【无标题】线程三连鞭之“线程池”
IDEA file encoding modification
ARC129E Yet Another Minimization 题解 【网络流笔记】
10 种常见的BUG分类
2 用D435i运行VINS-fusion
【LeetCode】矩阵模拟相关题目汇总
KT148A语音芯片怎么烧录语音进入芯片里面通过串口和电脑端的工具
仿网易云音乐小程序-uniapp
Three tips for you to successfully get started with 3D modeling
导入JankStats检测卡帧库遇到问题记录