Matrix of an Image
Show older comments
By manipulating the associated matrix of an image I need to create an up-side-down as well as left-to-right corresponding image. How can this be done with an image?
Answers (1)
Image Analyst
on 4 Feb 2015
flippedImage = flipud(yourImage); Flip top to bottom.
flippedImage = fliplr(yourImage); % Flip left and right.
Categories
Find more on Image Arithmetic in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!