| 153 | } |
| 154 | |
| 155 | void Arithmetic::RevDiv(Image& Source, Image& Dest, float value) |
| 156 | { |
| 157 | CheckSimilarity(Source, Dest); |
| 158 | |
| 159 | Kernel(reversed_div, In(Source), Out(Dest), Source.Step(), Dest.Step(), Source.Width() * Source.NbChannels(), value); |
| 160 | } |
| 161 | |
| 162 | void Arithmetic::Min(Image& Source, Image& Dest, float value) |
| 163 | { |
nothing calls this directly
no test coverage detected