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

Function iterativeDeconv

src/api/cpp/deconvolution.cpp:15–22  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13
14namespace af {
15array iterativeDeconv(const array& in, const array& ker,
16 const unsigned iterations, const float relaxFactor,
17 const iterativeDeconvAlgo algo) {
18 af_array temp = 0;
19 AF_THROW(af_iterative_deconv(&temp, in.get(), ker.get(), iterations,
20 relaxFactor, algo));
21 return array(temp);
22}
23
24array inverseDeconv(const array& in, const array& psf, const float gamma,
25 const inverseDeconvAlgo algo) {

Callers 1

mainFunction · 0.85

Calls 3

af_iterative_deconvFunction · 0.50
arrayClass · 0.50
getMethod · 0.45

Tested by

no test coverage detected