| 83 | } |
| 84 | |
| 85 | void Arithmetic::Min(Image& Source1, Image& Source2, Image& Dest) |
| 86 | { |
| 87 | CheckSimilarity(Source1, Source2); |
| 88 | CheckSimilarity(Source1, Dest); |
| 89 | |
| 90 | Kernel(min_images, In(Source1, Source2), Out(Dest), Source1.Step(), Source2.Step(), Dest.Step(), Source1.Width() * Source1.NbChannels()); |
| 91 | } |
| 92 | |
| 93 | void Arithmetic::Max(Image& Source1, Image& Source2, Image& Dest) |
| 94 | { |
nothing calls this directly
no test coverage detected