| 67 | } |
| 68 | |
| 69 | void Arithmetic::Mul(Image& Source1, Image& Source2, Image& Dest) |
| 70 | { |
| 71 | CheckSimilarity(Source1, Source2); |
| 72 | CheckSimilarity(Source1, Dest); |
| 73 | |
| 74 | Kernel(mul_images, In(Source1, Source2), Out(Dest), Source1.Step(), Source2.Step(), Dest.Step(), Source1.Width() * Source1.NbChannels()); |
| 75 | } |
| 76 | |
| 77 | void Arithmetic::Div(Image& Source1, Image& Source2, Image& Dest) |
| 78 | { |
nothing calls this directly
no test coverage detected