| 99 | } |
| 100 | |
| 101 | void Arithmetic::Mean(Image& Source1, Image& Source2, Image& Dest) |
| 102 | { |
| 103 | CheckSimilarity(Source1, Source2); |
| 104 | CheckSimilarity(Source1, Dest); |
| 105 | |
| 106 | Kernel(mean_images, In(Source1, Source2), Out(Dest), Source1.Step(), Source2.Step(), Dest.Step(), Source1.Width() * Source1.NbChannels()); |
| 107 | } |
| 108 | |
| 109 | void Arithmetic::Combine(Image& Source1, Image& Source2, Image& Dest) |
| 110 | { |
nothing calls this directly
no test coverage detected