help me plz
이전 댓글 표시
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
Walter Roberson
2012년 2월 2일
Please edit the title to something relevant to the topic.
lama riad
2012년 2월 3일
채택된 답변
추가 답변 (2개)
lama riad
2012년 2월 2일
0 개 추천
카테고리
도움말 센터 및 File Exchange에서 Image Arithmetic에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!