SourceCodePoint
Wednesday, 6 July 2016
Write a MATLAB program for rotate a image
Code:
clear;
clc;
I = imread(
'd:/matimage/baby7.gif'
);
J = imrotate(I,35,
'bilinear'
);
figure, imshow(I), figure, imshow(J);
Output:
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment