flipping transform in ITK

Hi everyone,

Is there by any change a way of having a flipping, or mirroring transform ? A transform, not a filter. I have looking for it, but no match for now. As I’m working with 2D images, I’ve tried to use a 3D Euler Transform, with no success yet. Is there anything close in ITK, and if not, could it be not so difficult to implement ?

Thanks in advance !
Yann

You can use resample image filter, with an appropriate transform (which does the inversion). Affine transform should be easy to construct, and there is a lot of documentation for it outside of ITK.

Oh, thanks, I hadn’t thought about the affine transform for that.
Thanks a lot @dzenanz !