▲ | Const-me 3 days ago | |
Good article, but it uses less than ideal formula for weights of the gaussian blur kernel. Gaussian function for coefficients is fine for large sigmas, but for small blur radius you better integrate properly. Luckily, C++ standard library has std::erf function you gonna need for the proper formula. Here’s more info: https://bartwronski.com/2021/10/31/practical-gaussian-filter... |