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?

Antworten (1)

Image Analyst
Image Analyst am 4 Feb. 2015

0 Stimmen

flippedImage = flipud(yourImage); Flip top to bottom.
flippedImage = fliplr(yourImage); % Flip left and right.

Gefragt:

am 4 Feb. 2015

Beantwortet:

am 4 Feb. 2015

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by