How to rotate an image in Matlab
Afficher commentaires plus anciens
For my class project I have to create an app which loads an image and allows you to change Red, blue, green colors and the brightness. I have sucessfully coded this app. Now I have to add a button which would allow me to rotate the image 90 degrees each time. The requirements is that I do not use any pre existing matlab functions, but have to create my own.
Would greatly appreciate any help on this. Thank you.
Réponses (4)
J Chen
le 4 Mai 2022
0 votes
You basically read the image into a matrix, then change the array element to a different location (swich row to column, etc.)
1 commentaire
Emir Mulic
le 4 Mai 2022
A = imread('ngc6543a.jpg');
You may use imread to read an image to a matrix.
Then operating with A matrix can give you 90 degree rotated image.
yes,sir,may be rot90,such as
im = imread('football.jpg');
for i = 1 : 4
im = rot90(im, 1);
figure; imshow(im, []);
end
1 commentaire
Image Analyst
le 7 Mai 2022
rot90 is a built in function, which he is not allowed to use.
Image Analyst
le 7 Mai 2022
Modifié(e) : Image Analyst
le 7 Mai 2022
You can use the apostrophe operator '
yourImage = yourImage';
This transposes the matrix. To now get a mirror image you have to swap rows or columns.
You can use the rotation matrix: https://en.wikipedia.org/wiki/Rotation_matrix
Catégories
En savoir plus sur Develop Apps Using App Designer 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!



