<div dir="ltr"><div>Hi Marcos,</div><div><br></div><div>It might be more convenient to use vtkImageReslice to flip the images.  It can take a 3x3 or 4x4 matrix that describes the transformation.</div><div><br></div><div>For a 3x3 matrix that flips the Y axis, you would use this:</div><div><br></div><div>reslice->SetResliceAxesDirectionCosines(</div><div>  1, 0, 0,</div><div>  0, -1, 0,</div><div>  0, 0, 1);</div><div><br></div><div>Be careful, though, because this flips the image around the origin, rather than flipping it around its center.</div><div><br></div><div>For a 4x4 matrix, use reslice->SetResliceAxes(vtkMatrix4x4 *).  By using a 4x4 matrix, you can make sure that the correct center-of-rotation is applied.</div><div><br></div><div> - David</div><br><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Sep 14, 2015 at 11:03 AM, Marcos <span dir="ltr"><<a href="mailto:fotosentido@gmail.com" target="_blank">fotosentido@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hi,<div><br></div><div>I attached a vtkImageFlip filter to my pipeline, but I can't find the way to "switch off" this filter or revert its effects.</div><div><br></div><div>I just want to flip my image when I press a button.</div><div><br></div><div>Any suggestions?</div><div>Thank you.</div></div></blockquote></div><br></div></div>