Update used a Gaussian blur matrix

This commit is contained in:
Lev
2021-08-02 19:12:35 -05:00
parent d9f483a1ae
commit 8849a58e16

View File

@ -1,8 +1,8 @@
let imgIn;
let matrix =[
[1/9, 1/9, 1/9],
[1/9, 1/9, 1/9],
[1/9, 1/9, 1/9]
[1/16, 2/16, 1/16],
[2/16, 4/16, 2/16],
[1/16, 2/16, 1/16]
];
function preload() {