| 59 | } |
| 60 | |
| 61 | void Arithmetic::AbsDiff(Image& Source1, Image& Source2, Image& Dest) |
| 62 | { |
| 63 | CheckSimilarity(Source1, Source2); |
| 64 | CheckSimilarity(Source1, Dest); |
| 65 | |
| 66 | Kernel(abs_diff_images, In(Source1, Source2), Out(Dest), Source1.Step(), Source2.Step(), Dest.Step(), Source1.Width() * Source1.NbChannels()); |
| 67 | } |
| 68 | |
| 69 | void Arithmetic::Mul(Image& Source1, Image& Source2, Image& Dest) |
| 70 | { |
nothing calls this directly
no test coverage detected