| 208 | // Calculation on one image - float required |
| 209 | |
| 210 | void 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 | |
| 217 | void Arithmetic::Log(Image& Source, Image& Dest) |
| 218 | { |
nothing calls this directly
no test coverage detected