| 46 | { |
| 47 | |
| 48 | void Transform::MirrorX(Image& Source, Image& Dest) |
| 49 | { |
| 50 | CheckSimilarity(Source, Dest); |
| 51 | |
| 52 | Kernel(mirror_x, Source, Dest, Source.Step(), Dest.Step(), Source.Width(), Source.Height()); |
| 53 | } |
| 54 | |
| 55 | void Transform::MirrorY(Image& Source, Image& Dest) |
| 56 | { |
nothing calls this directly
no test coverage detected