How can I turn an image over in Matlab?
I'm trying to turn over a开发者_如何转开发n image in Matlab (I mean, if the picture looks right then it should be looking at the left). How can I do it?
Thanks!
Flip the image before displaying with FLIPLR
imshow(fliplr(image))
精彩评论