Mostrar comentarios más antiguos
Hi, I want to display all i did for the image (translation, scale, and rotation) but error is still appearing. Can any body help me :'(
this is the code i did:
I=imread('cameraman.jpg');
deg = -30;
I2 = imrotate(I, deg, 'bilinear', 'crop');
J=imresize(I,[900 900],'nearest');
T = [1 0 0; 0 1 0;70 70 1];
tform_translate = maketform('affine', T);
[I3,xdata,ydata] = imtransform(I,tform_translate);
all=I3+I2+J;
imshow(all)
2 comentarios
Walter Roberson
el 2 de Feb. de 2012
Please edit the title to something relevant to the topic.
lama riad
el 3 de Feb. de 2012
Respuesta aceptada
Más respuestas (2)
lama riad
el 2 de Feb. de 2012
0 votos
2 comentarios
Walter Roberson
el 2 de Feb. de 2012
What is your desired end result?
lama riad
el 3 de Feb. de 2012
Categorías
Más información sobre Image Arithmetic en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!