16#include <NANA\core.hpp>
31inline _Tp
Gaussian2D(
const _Tp x,
const _Tp y,
const _Tp sigma) {
32 _Tp sigma_pow2 = sigma * sigma;
33 return 1.0 / std::sqrt(
NA_2PI * sigma_pow2) * std::exp(-(x * x + y * y) / (2 * sigma_pow2));
int GenGaussianKernel(Matrix &mat, const Size &dstSize, _Tp sigma)
生成高斯滤波核
_Tp Gaussian2D(const _Tp x, const _Tp y, const _Tp sigma)
二维高斯变换