| 91 | } |
| 92 | |
| 93 | void Arithmetic::Max(Image& Source1, Image& Source2, Image& Dest) |
| 94 | { |
| 95 | CheckSimilarity(Source1, Source2); |
| 96 | CheckSimilarity(Source1, Dest); |
| 97 | |
| 98 | Kernel(max_images, In(Source1, Source2), Out(Dest), Source1.Step(), Source2.Step(), Dest.Step(), Source1.Width() * Source1.NbChannels()); |
| 99 | } |
| 100 | |
| 101 | void Arithmetic::Mean(Image& Source1, Image& Source2, Image& Dest) |
| 102 | { |
nothing calls this directly
no test coverage detected