MCPcopy Create free account
hub / github.com/CRVI/OpenCLIPP / Exp

Method Exp

C++/programs/Arithmetic.cpp:210–215  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

208// Calculation on one image - float required
209
210void Arithmetic::Exp(Image& Source, Image& Dest)
211{
212 CheckSimilarity(Source, Dest);
213
214 Kernel(exp_image, In(Source), Out(Dest), Source.Step(), Dest.Step(), Source.Width() * Source.NbChannels());
215}
216
217void Arithmetic::Log(Image& Source, Image& Dest)
218{

Callers

nothing calls this directly

Calls 4

CheckSimilarityFunction · 0.85
StepMethod · 0.80
WidthMethod · 0.80
NbChannelsMethod · 0.80

Tested by

no test coverage detected