| 215 | } |
| 216 | |
| 217 | void Arithmetic::Log(Image& Source, Image& Dest) |
| 218 | { |
| 219 | CheckSimilarity(Source, Dest); |
| 220 | |
| 221 | Kernel(log_image, In(Source), Out(Dest), Source.Step(), Dest.Step(), Source.Width() * Source.NbChannels()); |
| 222 | } |
| 223 | |
| 224 | void Arithmetic::Sqrt(Image& Source, Image& Dest) |
| 225 | { |
nothing calls this directly
no test coverage detected