| 191 | } |
| 192 | |
| 193 | void Arithmetic::Invert(Image& Source, Image& Dest) |
| 194 | { |
| 195 | CheckSimilarity(Source, Dest); |
| 196 | |
| 197 | Kernel(invert_image, In(Source), Out(Dest), Source.Step(), Dest.Step(), Source.Width() * Source.NbChannels()); |
| 198 | } |
| 199 | |
| 200 | void Arithmetic::Sqr(Image& Source, Image& Dest) |
| 201 | { |
nothing calls this directly
no test coverage detected