Matrix of an Image
Afficher commentaires plus anciens
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?
Réponses (1)
Image Analyst
le 4 Fév 2015
flippedImage = flipud(yourImage); Flip top to bottom.
flippedImage = fliplr(yourImage); % Flip left and right.
Catégories
En savoir plus sur Image Arithmetic dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!