MCPcopy Create free account
hub / github.com/arrayfire/arrayfire / gaussianblur

Function gaussianblur

examples/image_processing/filters.cpp:144–148  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

142}
143
144array gaussianblur(const array &in, int window_width, int window_height,
145 double sigma) {
146 array g = gaussianKernel(window_width, window_height, sigma, sigma);
147 return convolve(in, g);
148}
149
150/**
151 * azimuth range is [0-360]

Callers 1

mainFunction · 0.85

Calls 2

gaussianKernelFunction · 0.50
convolveFunction · 0.50

Tested by

no test coverage detected