GaussianBlur
can be used to blur the input image using a gaussian
kernel with a specified kernel size and standard deviation.
using Augmentor
using ImageShow, ImageCore
img_in = testpattern(RGB, ratio=0.5)
mosaicview(
img_in,
augment(img_in, GaussianBlur(3)),
augment(img_in, GaussianBlur(5, 2.5));
fillvalue=colorant"white", nrow=1, npad=10
)
This notebook was generated using Literate.jl.