3

I'm trying to turn over an image in Matlab (I mean, if the picture looks right then it should be looking at the left). How can I do it?

Thanks!

Ankoku
  • 339
  • 1
  • 3
  • 7
  • This can be called a horizontal flip. Or a horizontal reflection etc – Kurru Mar 27 '11 at 12:48
  • Related/Possible duplicate: [flip and rotate a color image in MATLAB](http://stackoverflow.com/questions/4010113/flip-and-rotate-a-color-image-in-matlab) – gnovice Mar 28 '11 at 19:42

1 Answers1

4

Flip the image before displaying with FLIPLR

imshow(fliplr(image))
Jonas
  • 74,690
  • 10
  • 137
  • 177