| 229 | } |
| 230 | |
| 231 | void Arithmetic::Sin(Image& Source, Image& Dest) |
| 232 | { |
| 233 | CheckSimilarity(Source, Dest); |
| 234 | |
| 235 | Kernel(sin_image, In(Source), Out(Dest), Source.Step(), Dest.Step(), Source.Width() * Source.NbChannels()); |
| 236 | } |
| 237 | |
| 238 | void Arithmetic::Cos(Image& Source, Image& Dest) |
| 239 | { |
nothing calls this directly
no test coverage detected